请问我这样为什么不能打开新窗口
运行后,这样到最后,然后打开新窗口会失败,是显示那种找不到网页的那样
2016-11-14
我照着写的,但问什么“确定”按键要双击才能打开新的窗口,单击没反应喃,求解
<script type="text/javascript">
function Wopen()
{
var bb=confirm("打开新的窗口");
if(bb==true)
{
window.open("http://www.imooc.com","_blank","width=400,height=500,menubar=no,status=no,scrollbars=yes")
}
else
{
document.write("取消操作");
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" ondblclick="Wopen()" />
</body>
<!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 message=confirm("是否打开新窗口");
// 新窗口打开时弹出确认框,是否打开
if(message==true)
{
var str = prompt("请输入要打开的网址");
window.open(str,'width=400,height=500,menubar=no,toolbar=no');
}
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
举报