JavaScript 光标属性
鼠标属性设置或返回将为鼠标属性显示的光标类型。
以下是实现 JavaScript 光标属性的代码 −
示例
<!DOCTYPE html> <html> <head> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } </style> </head> <body> <h1>JavaScript Cursor property</h1> <p class="sample"></p> <h3> Hover the mouse over the above paragraph after clicking the below button </h3> <button class="Btn">Change Cursor</button> <script> let sampleEle = document.querySelector(".sample"); document.querySelector(".Btn").addEventListener("click", () => { sampleEle.style.cursor = "crosshair"; }); </script> </body> </html>
输出
单击“更改光标”按钮 −
广告