<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow()
{
var lol=confirm("确定在新窗口打开网址吗?")
if(lol==true)
{
var wangzhi=prompt("确定打开网址?,http://www.imooc.com/")
if(wangzhi!=null)
{
window.open(wanhzhi,"_blank",'width=400,height=500,menubar=no,toolbar=no')
}
else
{
alert("再见")
}
}
else
{
alert("再见")
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
<!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 lol=confirm("确定在新窗口打开网址吗?");
if(lol==true)
{
var wangzhi=prompt("确定打开网址?");
if(wangzhi=="")
{
window.open("http://www.imooc.com/","_blank",'width=400,height=500,menubar=no,toolbar=no');
}
else
{
window.open(wanhzhi,"_blank",'width=400,height=500,menubar=no,toolbar=no');
}
}
else
{
alert("再见")
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
这个我测试过是可以打开,,你最开始的那个也是行的啊 !如果还不行的话,可能是我没太搞懂你想要表达是什么~你可以自行百度一下吧~
var wangzhi=prompt("确定打开网址?,http://www.imooc.com/")
是不是双引号漏了,改成:
var wangzhi=prompt("确定打开网址?","http://www.imooc.com/")
试试看
你看看你的双引号
if(wangzhi=="")
{
window.open("http://www.imooc.com/");
}
else
{
window.open(wanhzhi);
}
你不要设置他弹窗就好了啊
神啊!!!!你这也是打不开新窗口啊 是连接窗口 不是弹窗啊 我弹窗正常 就是连接不到新窗口 widow.open没起作用啊!!!
<!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 lol=confirm("确定在新窗口打开网址吗?");
if(lol==true)
{
var wangzhi=prompt("确定打开网址?");
if(wangzhi=="")
{
window.open("http://www.imooc.com/","_blank",'width=400,height=500,menubar=no,toolbar=no');
}
else
{
window.open(wanhzhi,"_blank",'width=400,height=500,menubar=no,toolbar=no');
}
}
else
{
alert("再见")
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>