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.
我能够跟踪鼠标移动。我计划使用相同的计算来查看鼠标在哪个对象上,但画布似乎没有获得双击事件(使用 jquery)。
跟踪双击的最佳方法是什么?如果您建议跟踪时间而不是我如何获得单击以及如何获得时间?
示例画布:
<canvas id="mycanvas" height="200" width="300"></canvas>
检测画布上的双击:
$('#mycanvas').on('dblclick', function() { alert('Double clicked'); });
演示