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>

输出

单击“更改光标”按钮 −

更新于:08 年 5 月 2020 日

137 人浏览过

开启你的职业生涯

完成课程即可获得认证

开始
广告