慕先生33592250
2018-10-16 21:45
<!DOCTYPE HTML>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
// 新窗口打开时弹出确认框,是否打开
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
function openWindow()
{
var message=confirm("是否打开新的网页?");
if(message==true)
{
var web=prompt("请输入网址","http://www.imooc.com/");
if(web!=null)
{
window.open(web,'_blank','width=400,height=500,menubar=no,toolbar=no');
}
else
{
alert("再见~");
}
else
{
alert("再见~");
}
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站"
onClick="openWindow()"/>
</body>
</html>
好像还多了个“}”号,建议你调整好格式
这样也可以,前面是我搞错了,你错的是onclick,c是小写;可以直接用openWindow();直接调用函数调试
window.open后面不能跟“web”,window.open([url],....),那个位置是url地址的
JavaScript入门篇
739817 学习 · 9566 问题
相似问题