Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<title>状态栏文字</title>
<script>
function doMouseMove() {
var tr = document.body.createTextRange();
tr.moveToPoint(event.clientX, event.clientY);
tr.expand("word");
window.status = tr.text;
}
document.onmousemove = doMouseMove;
</script>
<body>手册网提示:欢迎光临!</body>
CSS代码...
JS代码...
xxxxxxxxxx