为什么打开的网址不对
function openWindow(){
if(confirm('确认打开新窗口吗?'))
{
var address=prompt("请输入你要打开的网址",'http://www.imooc.com/')
window.open(address,'_blank','width=400,height=500,menubar=no,toolbar=no');
}
}
function openWindow(){
if(confirm('确认打开新窗口吗?'))
{
var address=prompt("请输入你要打开的网址",'http://www.imooc.com/')
window.open(address,'_blank','width=400,height=500,menubar=no,toolbar=no');
}
}
2020-07-20
举报