使用css自定义鼠标样式
css能定义的全部鼠标样式有:
cursor : auto | crosshair | default | hand | move | help | wait | text | w-resize |s-resize | n-resize |e-resize | ne-resize |sw-resize | se-resize | nw-resize |pointer | url (url)

比如日常我们在DIV+CSS布局时候,我们希望鼠标指向某个局部span标签对象时候,鼠标指针光标就变为手指状态,这个时候我们就对对象span设置cursor: pointer即可。
例如:
设置鼠标移动到html p对象时鼠标变为文本选择样式
p { cursor: text; }
设置鼠标移动到a超链接对象时鼠标变为手指形状(链接选择)
a { cursor: pointer; }
设置鼠标指针默认为一个小图片
body { cursor: url("小图片地址")}
