为了账号安全,请及时绑定邮箱和手机立即绑定

大神帮忙看看,为什么代码写了,点开没反应?写错了吗?

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


正在回答

3 回答

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");

}}  




0 回复 有任何疑惑可以回复我~
#1

慕容8016570 提问者

非常感谢!
2016-10-17 回复 有任何疑惑可以回复我~

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

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

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

}}  


0 回复 有任何疑惑可以回复我~
  1. 确认框使用confirm();

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

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

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

大神帮忙看看,为什么代码写了,点开没反应?写错了吗?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信