问答详情
源自:2-7 编程练习

怎么没反应呢?求大神

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>浏览器对象</title>
 <script type="text/javascript">  
    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");
        }
    }  
 </script>
 
 </head>
 
 <body>
  <input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>

提问者:惜后 2016-10-12 14:21

个回答

  • 嗷嗷待哺啊
    2016-10-12 14:36:43
    已采纳

    方法名写错我

  • 慕粉3917686
    2016-10-12 14:42:39

    第七行的openWindon改为openWindow

    第八行if里面的判断语句应该为confirm("确定打开新窗口吗?")==true

  • 慕娘8039740
    2016-10-12 14:41:11

    按钮的事件是onclick="openWindow()",

    你写的函数是 function openWindon(),window写错了,

    而且url不给个if判定的话,无论prompt界面消息框点的是确定还是取消都会在新网页打开慕课网,

    就是说加个if(url!=null);

  • weibo_木叶丶剑伈_03677055
    2016-10-12 14:38:48

    function openwindow(){}

  • qq_秋风醉人_03986388
    2016-10-12 14:38:36

    首先 你的    function openWindon()方法与onclick="openWindow()中的window拼写不一样,其次你缺少了判断你打开的那个网页是否为空的语句。