Canvas 获得键盘焦点的方法

Canvas 无法直接获得键盘焦点,但可以通过设置 tabindex 属性的方式获得焦点,实现代码如下:

canvas.setAttribute('tabindex', '0'); // needed to put focus on the canvas
canvas.addEventListener('click', function() {
    canvas.focus();
});
canvas.focus();

猜你喜欢

转载自www.cnblogs.com/flypopo/p/10463869.html