为什么我这样写 网页不弹出来?
啦啦啦啦啦
function openWindow(){
var open=confirm("是否打开");
if(open==true)
{
window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0, status=no,scrollbars=yes')
}
else
{
alert("再见")
}
}
啦啦啦啦啦
function openWindow(){
var open=confirm("是否打开");
if(open==true)
{
window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0, status=no,scrollbars=yes')
}
else
{
alert("再见")
}
}
2019-03-11
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript">
function openWindow(){
var a=confirm("是否打开新窗口");
if(a==true){
var newweb=prompt('确认打开的网址:','http://www.imooc.com');
if(newweb!=null){
window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no')
}
else{
alert(2);
}
}
else{
alert(5);
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
举报