document.getElementsByTagName("body").item(0).style.cursor="pointer"
}
如果无效则body不够大,换成:
window.onload=function(){document.getElementsByTagName("*").item(0).style.cursor="pointer"
}
当然,最好由CSS解决。
<a>标签好像所有浏览器默认的都是带下划线的。在链接里面加上style="cursor:pointer" 鼠标可以变手型,也可以加上style="cursor:hand",但是后者只有IE支持
链接浏览器默认的好像就是手型啊