案例:HTML DOM案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
<p>请把鼠标移动到单词上,这样会看到鼠标指针的变化:</p> 
4
<span style="cursor: auto">Auto</span><br />
5
<span style="cursor: crosshair">Crosshair</span><br />
6
<span style="cursor: default">Default</span><br />
7
<span style="cursor: pointer">Pointer</span><br />
8
<span style="cursor: hand">Hand</span><br />
9
<span style="cursor: move">Move</span><br />
10
<span style="cursor: e-resize">e-resize</span><br />
11
<span style="cursor: ne-resize">ne-resize</span><br />
12
<span style="cursor: nw-resize">nw-resize</span><br />
13
<span style="cursor: n-resize">n-resize</span><br />
14
<span style="cursor: se-resize">se-resize</span><br />
15
<span style="cursor: sw-resize">sw-resize</span><br />
16
<span style="cursor: s-resize">s-resize</span><br />
17
<span style="cursor: w-resize">w-resize</span><br />
18
<span style="cursor: text">text</span><br />
19
<span style="cursor: wait">wait</span><br />
20
<span style="cursor: help">help</span><br />
21
</body>
22
</html>
23