问答详情
源自:2-7 编程练习

为什么光标移至按钮上时没有变成手型

<!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>


提问者:weixin_慕移动4434633 2016-11-20 22:24

个回答

  • 夜尽天明4039292
    2016-11-20 22:53:14
    已采纳

    加入style="cursor:pointer"    

    <input name="button" type="button" onClick="openWindow()" value="新窗口打开网站" style="cursor:pointer"    /> 

  • 格瑞普3941210
    2016-11-20 22:48:28

    <input name="button" type="button" onClick="openWindow()" value="新窗口打开网站"style="cursor:pointer"/>  最后加一句这个

  • 老友丶
    2016-11-20 22:46:53

    <input style="cursor:pointer;" name="button" type="button" onClick="openWindow()" value="新窗口打开网站"/>