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

代码写出来了但显示不了效果,不知道哪出问题了?求指点:

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

  <meta http-equiv="Content-Type" content="text/html,charset=utf-8"/>   

  <script type="text/javascript">  

    function openWidow(){

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

        var input=confirm("确认打开?");

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

        if(input==ture){

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

            window.open('http://www.imooc.com/','_blank','menubar=no,scrollbars=yes,toolbar=no,status=no')

        }else

        {   alert("null");

            } 

        openWidow();

    }

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


正在回答

4 回答

<script type="text/javascript">
    // 新窗口打开时弹出确认框,是否打开
    var crel = confirm("Open a new window ?");
    if(crel == true){
        // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com
        var prel = prompt("Input url:", "http://www.imooc.com");
        //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
        window.open(prel, "_blank", "width=400,height=500,menubar=no,toolbar=no");
    }        
</script>

给你参考一下。

你代码的问题:

1、少了一个输入框 prompt。

2、window.open 语句后面没有分号,

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

慕尼黑506139 提问者

window.open()后面可以不加分号会影响效果吗?
2018-09-24 回复 有任何疑惑可以回复我~
#2

慕尼黑506139 提问者

谢谢?
2018-09-24 回复 有任何疑惑可以回复我~
#3

simple自在 回复 慕尼黑506139 提问者

为了规范和严谨,还是加上吧。不加我也不知道会有什么结果。
2018-09-24 回复 有任何疑惑可以回复我~
#4

simple自在 回复 慕尼黑506139 提问者

哦,这样啊。行吧,刚学习,能正确运行就行,更深入的现在还没有能力探讨
2018-09-24 回复 有任何疑惑可以回复我~
#5

慕尼黑506139 提问者

按你的源代码打了一下还是显示不出来,按按钮没有任何效果
2018-09-24 回复 有任何疑惑可以回复我~
#6

慕尼黑506139 提问者

回复 simple自在 还是没法运行,不知道哪出问题了
2018-09-24 回复 有任何疑惑可以回复我~
查看5条回复

<!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 dakai=confirm("打开窗口吗?");

    if(dakai==true)

    {

        

        var duihua=prompt("Input url:","http://www.imooc.com");

        if(duihua!=null){

            window.open(,'_blank','width=400px,height=500px,menubar=no,toolbar=no');

        }

        else

        {

            alert("谢谢使用!")

        }

       

    }

    else{

        document.write("前端很好,你要学习哦!")

    }

  }

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


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


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

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


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

慕尼黑506139 提问者

widow.open()中_blank前面可以省略吗
2018-09-26 回复 有任何疑惑可以回复我~

function openWidow(){

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

        var input=confirm("Open a new window?");

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

        if(input==true){

            var url=prompt("input url:","http://www.imooc.com);

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

    window.open(url,'_blank','width:400,height:500,menubar=no,toolbar=no')

            }else{alert("null");

        }

    }

问题找到了,input==true错写成input==ture;

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

function openWidow(){

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

        var input=confirm("Open a new window?");

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

        if(input==ture){

            var url=prompt("input url:","http://www.imooc.com);

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

    window.open(url,'_blank','width:400,height:500,menubar=no,toolbar=no')

            }else{alert("null");

        }

    }

<--打出如上代码页面还是打不开,是网址问题吗?-->

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

慕尼黑506139 提问者 回复 simple自在

我弄了半天,发现加了;也不执行,后来复制代码慢慢往回改又执行了。头疼,两个代码几乎一模一样,就一个仅能显示。现在效果出来了,就是还是搞不清楚两个代码一模一样为什么显示不出同样的效果。
2018-09-24 回复 有任何疑惑可以回复我~
#2

慕尼黑506139 提问者 回复 simple自在

不过还是谢谢你
2018-09-24 回复 有任何疑惑可以回复我~
#3

qq_旧巷少年_cfmpFS 回复 慕尼黑506139 提问者

::::::::::::::::::这个的问题,提示的他写的是中文的
2018-09-26 回复 有任何疑惑可以回复我~
#4

慕尼黑506139 提问者

input==true
2018-09-26 回复 有任何疑惑可以回复我~
#5

慕尼黑506139 提问者 回复 qq_旧巷少年_cfmpFS

代码true错写成了ture
2018-09-26 回复 有任何疑惑可以回复我~
查看3条回复

举报

0/150
提交
取消

代码写出来了但显示不了效果,不知道哪出问题了?求指点:

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