如何使用JavaScript设置要为鼠标指针显示的光标类型?
要设置游标的类型,请使用JavaScript中的cursor属性。它允许您在单击按钮时更改光标。
示例
您可以尝试运行以下代码来设置要使用JavaScript的鼠标指针显示的光标类型-
<!DOCTYPE html> <html> <body> <h1 id="myID">Heading 1</h1> <p>Check the heading before and after mouse hover.</p> <button type="button" onclick="display()">Click to change the cursor</button> <script> function display() { document.getElementById("myID").style.cursor = "pointer"; } </script> </body> </html>