问答详情
源自: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 score;

    score=prompt("是否打开新的窗口");

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

    if (score==true)

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

       {

           score prompt("请输入你要打开的网址:","http://www.imooc.com/");

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

       window.open(score,'_blank','width=400,height500,menubar=no,toolbar=no,')

       }

    }

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:慕容8016570 2016-10-13 10:15

个回答

  • o_o18
    2016-10-13 10:31:41
    已采纳

    score=prompt("是否打开新的窗口");应该改为confirm,确认提示框

    score prompt("请输入你要打开的网址:","http://www.imooc.com/");

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

           window.open(score,'_blank','width=400,height500,menubar=no,toolbar=no,')

    应该改为

    function openWindon(){ 

    if(confirm("确定打开新窗口吗?")){

    var url = prompt("请输入一个网址","http://www.imooc.com/");  

    window.open( url,"_blank","toolbar=no, menubar=no, scrollbars=yes,  width=400, height=400");

    }}  




  • 宝慕林9570659
    2016-10-13 10:51:40

    对的,要在定义一个变量来存放prompt中的内容

    var url = prompt("请输入一个网址","http://www.imooc.com/");  

    window.open( url,"_blank","toolbar=no, menubar=no, scrollbars=yes,  width=400, height=400");

    }}  


  • HenryChia
    2016-10-13 10:31:20

    1. 确认框使用confirm();

    2. 应该新建一个变量来储存要打开的网址,url=prompt("请输入你要打开的网址:")

    3. 变量的赋值一定要使用 '='