问答详情
源自: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 mes=confirm("是否点击确定?")

    // 新窗口打开时弹出确认框,是否打开

if(mes==true)

    {var mes2=prompt("确定打开的网址","http://www.imooc.com/");

    // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/

if(mes2!=null)

    {window.open(mes2,"_blank","width=400,height=500,menbar=no,toolbar=no");}

   }

 }

    //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。

  

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:慕妹2591510 2020-01-15 19:24

个回答

  • qq_精慕门5134154
    2020-01-15 21:33:23
    已采纳

        {var mes2=prompt("确定打开的网址","http://www.imooc.com/"); 这一句话"确定打开网址"后面的逗号写成了中文符