为什么光标移至按钮上时没有变成手型
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
var mychar=confirm("Open the window?");
if(mychar==true){
var mywindow=prompt("Please write the website:","http://www.ipsousou.com/");
if(mywindow!=null){
window.open(mywindow,'_blank','width=400,height=500,menubar=no,toolbar=no');
}
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="openWindow()" value="新窗口打开网站"/>
</body>
</html>