<!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 abc=prompt("确认打开这个网址吗?", "http://www.imooc.com");
if(abc!=null)
{
alert(window.open('url', '_blank','width=400,height=500,menubar=no,toolbar=no'))
}
else
{
abc.close()
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onClick="openWindow()" />
</body>
</html>
点button没反应
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
confirm("是否打开网站");// 新窗口打开时弹出确认框,是否打开
var abc=prompt("输入要打开的网址","http://");
if(abc==null)// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
{}else{
window.open(abc,'_block','width=400px,height=500px,menubar=no,toolbar=no')
} //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
}
</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=gbk"/>
<script type="text/javascript">
function openWindow() {
var abc=prompt("确认打开这个网址吗?");
if(abc!=null)
{
window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no');
}
else
{
abc.close()
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onClick="openWindow()" />
</body>
</html>
url换成abc
alert(window.open('url', '_blank','width=400,height=500,menubar=no,toolbar=no'))去掉alert试一试