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

来源:2-7 编程练习

黑客0000

2015-12-24 18:05

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

写回答 关注

3回答

  • 励行
    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>

    你是要这种效果吗


    黑客0000

    非常感谢!

    2015-12-26 19:32:27

    共 1 条回复 >

  • 发霉的饭盒
    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>

    是这个

    微笑小婷

    我是这么写的,但木有效果

    2015-12-25 17:47:25

    共 1 条回复 >

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题