解决firefox、chrome不兼容cursor:hand 设置鼠标为手型的方法
解决firefox、chrome不兼容cursor:hand
<img id="register" src="image/reg.gif" width="52" height="21" border="0px" style="cursor:hand;">
cursor:hand只有微软IE浏览器识别
兼容所有浏览器可以用 cursor:pointer
修改:
<img id="register" src="image/reg.gif" width="52" height="21" border="0px" style="cursor:pointer;">