<!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 mymessage=confirm("是否打开新窗口?");
if(mymessage==true)
{
window.open('http://www.imooc.com/','_blank','width=400,height=500,menubar=no,toolbar=no');
}
else
{
alert("打开失败!")
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
经测试,代码无问题,不出现跳转的原因可能是浏览器限制了弹框;chrome下,设置->高级设置->内容设置->弹出式窗口。另外,你的代码中没有提示框的代码,估计贴错了代码。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
var isOpen = confirm("是否确认打开?");
if(isOpen === true){
var site = prompt("打开的网址:","http://www.imooc.com");
window.open(site,"_blank","width=400,height=500,menubar=no,toolbar=no");
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>