问答详情
源自: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 vre(){

       var soc=confirm("是否要打开新网址?");

       if (soc==true){window.open('http://www.imooc.com/,width=400px,height=500px,toolbar=no,menubar=no');}

       else{}

   }

  </script> 

 </head> 

 <body> 

  <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 

 </body>

</html>


提问者:菜鸟大师兄 2018-12-12 22:14

个回答

  • 大江滚滚
    2019-05-14 19:44:56

    onclick是点击之后调用后面写的方法,你的方法名是vre(),所以应该改为onclick=“vre()”