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

来源:2-7 编程练习

weixin_慕移动4434633

2016-11-20 22:24

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


写回答 关注

3回答

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

    加入style="cursor:pointer"    

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

    weixin...

    非常感谢!

    2016-11-20 23:05:09

    共 1 条回复 >

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

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

    格瑞普394... 回复weixin...

    不客气

    2016-11-21 14:01:42

    共 2 条回复 >

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

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

    weixin...

    谢谢!

    2016-11-20 23:05:26

    共 1 条回复 >

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题