例如:http://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_canvas_arc 我想了解如何使整個圓圈成爲可點擊的鏈接,我如何捕捉該元素? 事件如何在畫布內工作?如何捕捉畫布內的元素?
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.beginPath();
ctx.arc(100, 75, 50, 0, 2 * Math.PI);
ctx.stroke();
<canvas id="myCanvas" width="300" height="150" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas>
請考慮將代碼添加到您的問題,而不是鏈接到它。這樣,當鏈接死亡時,這個問題仍然對其他人有意義。這可能也更有可能獲得答案,因爲人們會立即看到一些嘗試的代碼 – Toby
這可能是您正在尋找的答案如何將簡單的onClick事件處理程序添加到canvas元素?:http:// stackoverflow。 com/questions/9880279/how-do-i-add-a-simple-onclick-event-handler-to-a-canvas-element – Stepashka
Toby,there。 @Stepashka,我會檢查一下,看起來有點複雜。謝謝。 – odedta