博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Canvas 获得键盘焦点的方法
阅读量:5089 次
发布时间:2019-06-13

本文共 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

你可能感兴趣的文章