打开的网页地址多了本地的路径
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/,多了本地的路径