Canvas 无法直接获得键盘焦点,但可以通过设置 tabindex 属性的方式获得焦点,实现代码如下:
canvas.setAttribute('tabindex', '0'); // needed to put focus on the canvascanvas.addEventListener('click', function() { canvas.focus();});canvas.focus();
本文共 261 字,大约阅读时间需要 1 分钟。
Canvas 无法直接获得键盘焦点,但可以通过设置 tabindex 属性的方式获得焦点,实现代码如下:
canvas.setAttribute('tabindex', '0'); // needed to put focus on the canvascanvas.addEventListener('click', function() { canvas.focus();});canvas.focus();
转载于:https://www.cnblogs.com/flypopo/p/10463869.html