请问window.open()中的网址参数必须格式为:http://开头吗?
function openWindow(){
var pd=prompt("请输入需要打开的新网址:","http://www.imooc.com/");
alert(pd);
window.open( pd,'_blank','width=600,height=400,menubar=no,toolbar=no, status=no,scrollbars=yes')
}
如果输入的网址为:http://开头便跳转到正确网址,但是如果直接输入,例如:www.baidu.com,就会跳转到http://www.imooc.com/code/www.baidu.com,导致错误跳转