是否可以以简单的方式在整个 html 页面上将光标设置为“等待”?这个想法是向用户显示在完成 ajax 调用时正在发生的事情。下面的代码显示了我尝试过的简化版本,还演示了我遇到的问题:
- 如果一个元素 (#id1) 设置了光标样式,它将忽略 body 上的一组(显然)
- 某些元素具有默认光标样式 (a),并且不会在悬停时显示等待光标
- body 元素根据内容有一定的高度,如果页面很短,光标将不会显示在页脚下方
考试:
<html>
<head>
<style type="text/css">
#id1 {
background-color: #06f;
cursor: pointer;
}
#id2 {
background-color: #f60;
}
</style>
</head>
<body>
<div id="id1">cursor: pointer</div>
<div id="id2">no cursor</div>
<a href="#" onclick="document.body.style.cursor = 'wait'; return false">Do something</a>
</body>
</html>
后来编辑......
它在Firefox和IE中工作:
div#mask { display: none; cursor: wait; z-index: 9999;
position: absolute; top: 0; left: 0; height: 100%;
width: 100%; background-color: #fff; opacity: 0; filter: alpha(opacity = 0);}
<a href="#" onclick="document.getElementById('mask').style.display = 'block'; return false">
Do something</a>
此解决方案(或功能)的问题在于,由于 div 重叠,它会阻止点击(感谢 Kibbee)
稍后编辑...
来自 Dorward 的一个更简单的解决方案:
.wait, .wait * { cursor: wait !important; }
进而
<a href="#" onclick="document.body.className = 'wait'; return false">Do something</a>
此解决方案仅显示等待光标,但允许点击。