问答详情
源自:3-1 认识DOM

大神帮忙看下

<!doctype html>

<html>

    <head>

        <meta http-equiv="Content-Type" content="text/html; charset=gb2312">

        <title></title>

        <script type="text/javascript">

        function wopen(){

            var nline;

            var oline=prompt();

            nline=confirm("确定要打开")

            if(nline)

            {

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

            }

        }

        </script>

    </head>

    <body>

        <input name="bt" type="button" onclick="wopen" value="点击我试试">

    </body>

</html>

帮忙看下,为什么点击“点击我试试”没有反应呢

提问者:慕粉1840084516 2017-03-01 19:15

个回答

  • hyl黄大仙
    2017-03-01 23:26:05
    已采纳

    <input name="bt" type="button" onclick="wopen" value="点击我试试"> 改为onclick="wopen()"

  • 洋葱宝宝
    2017-03-01 22:34:39

    onclick里的wopen少了(),

                var nline;

                var oline=prompt();

                nline=confirm("确定要打开")

                if(nline)

    还有这段代码根本不知道你要干嘛,你confirm之后想prompt的话,首先要if(nline==true),然后online=prompt('请输入网址:','http://www.imooc.com')

  • Judy0311
    2017-03-01 19:39:23

    亲,你的confirm确认语句后面的if语句并没有判断吧,if里面的括号里面改成nline==true试试