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

为何不能只用一个确认对话框 confirm ,点击确认直接进入window.open ,直接进入新窗口呢?这是为什么

为何不能只用一个确认对话框 confirm ,点击确认直接进入window.open ,直接进入新窗口呢?这是为什么

提问者:黑客0000 2015-12-24 18:05

个回答

  • 励行
    2015-12-24 18:53:58
    已采纳

    <!DOCTYPE HTML>
    <html>
    <head>
    <title>一个对话框</title>
    <script style="text/script">
    function sml(){
    var sm=confirm("ha");
    if(sm==true)
    {window.open("http://www.imooc.com");}


    </script>
    </head>
    <body>

    <script style="text/script">

    var sm=confirm("是否打开网页");
    if(sm==true)
    {window.open("http://www.imooc.com");}


    </script>

    </body>
    </html>

    你是要这种效果吗


  • 发霉的饭盒
    2016-01-19 12:10:49

    confirm确定直接打开网址的话,就缺少用户自己修改网址这一步骤啦

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

  • 励行
    2015-12-24 18:55:27

    <!DOCTYPE HTML>
    <html>
    <head>
    <title>一个对话框</title>

    </head>
    <body>

    <script style="text/script">

    var sm=confirm("是否打开网页");
    if(sm==true)
    {window.open("http://www.imooc.com");}


    </script>

    </body>
    </html>

    是这个