x
 
<!DOCTYPE html>
<html>
<body>
<p id="demo" style="cursor:wait;">这是一个段落。请把鼠标悬停在我上面。</p>
<button type="button" onclick="myFunction()">返回光标的类型</button>
 
<script>
function myFunction() {
  alert(document.getElementById("demo").style.cursor);
}
</script>
</body>
</html>