altKey Mouse Event在JavaScript中的作用是什么?
altkey鼠标事件属性用于显示单击鼠标按钮时是否按下了 SHIFT 键。
示例
您可以尝试运行以下代码来了解如何在 JavaScript 中实现 altKey 鼠标事件。
<!DOCTYPE html> <html> <body onmousedown=funcAltKey(event)> <div>Press and hold ALT key and then click here.</div> <script> function funcAltKey(event) { if (event.altKey) { alert(ALT key: Pressed); } else { alert(ALT key: NOT Pressed); } } </script> </body> </html>
以上就是altKey Mouse Event在JavaScript中的作用是什么?的详细内容,更多请关注双恒网络其它相关文章!