问答详情
源自:2-7 编程练习

打开的网页地址多了本地的路径

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/,多了本地的路径

提问者:慕婉清4886767 2016-05-10 10:48

个回答

  • weibo__将爱_进行到底_0
    2016-05-10 11:18:08

    window.open([URL], [窗口名称], [参数字符串])

    你的url为什么写了一个prompt?

  • qq__2031
    2016-05-10 11:05:51

    我复制了你的代码,打开没本地的路径啊