window.onload=function(){ document.getElementsByTagName("body").item(0).style.cursor="pointer"}
如果无效则body不够大,换成:
window.onload=function(){ document.getElementsByTagName("*").item(0).style.cursor="pointer"}
当然,最好由CSS解决。