Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JavaScript でキャンバスに基本的な onclick リスナーを追加する際に問題が発生しました。その (x, y) 座標を取得したいのですが、助けていただければ幸いです。
ありがとうございました。
これを試して..
document.getElementById('canvasId').addEventListener('click',function(evt){ alert(evt.clientX + ',' + evt.clientY); },false);