猿问

关于 window.open的问题?

 function openWindow(){
            var vunwen=confirm("是否打开新窗口?");
            if(vunwen==true){
              var tiwen=prompt("请输入新网址:","http://www.imooc.com/");
              window.open(tiwen,'_blank','width=400,height=500,menubar=no,toolbar=no');
            }
            else{
                alert("你没有打开新窗口");
            }
    }

//

在window.open(tiwen,'_blank','width=400,height=500,menubar=no,toolbar=no');这段代码中,代码可以运行,将 tiwen改成 'http://www.imooc.com/'也可以,但是将 tiwen改成 'tiwen' 便不能跳转到新网页,这是因为什么呢?



智取启辱
浏览 785回答 1
1回答

西兰花伟大炮

因为你这里是tiwen = 'http://www.imooc.com/';     所以你这里的tiwen变量是一个字符串了吧,那你给字符串再加一组引号就错了瑟
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答