function openWindow(){ var a=confirm('您确定要打开窗口吗');
if(a==true){
var b=prompt('请输入您打开的网址',' http://www.imooc.com/');
if(b!=null){ window.open(b,'_blank','width=400px,height=500px')
} } } 为什么我的代码,最后打开的时候,地址栏是这样http://localhost:63342/untitled/http%EF%BC%9A//www.imooc.com/,多了本地的路径
window.open([URL], [窗口名称], [参数字符串])
你的url为什么写了一个prompt?
我复制了你的代码,打开没本地的路径啊