在JSP中,如何让鼠标到链接的时候变成小手?

来源:百度知道 编辑:UC知道 时间:2024/05/31 02:48:07
如题,还又如何在链接上加下划线

A {color: #000000;font-family:Verdana;text-decoration:none}
A:hover {color: #FF0000; text-decoration: underline}
A:active {color: #0000FF; text-decoration: underline}
通过上述javascript代码 text-decoration: underline声明下划线

<a>标签好像所有浏览器默认的都是带下划线的。
在链接里面加上style="cursor:pointer;" 鼠标可以变手型,也可以加上style="cursor:hand;",但是后者只有IE支持
链接浏览器默认的好像就是手型啊