emmmm 小白自学的 为啥弹窗都没有= =
<!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 mymesenge=confirm('是否開啟新網站');
if(mymesenge==true)
{
window.open('https://www.imooc.com/','width=400,height=500,menubar=no,toolbar=no');
}
else
{
mymesenge.close();
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
else....
截图上那个的话吧gbk换成utf-8
你回复里的这个可以出来啊
// 新窗口打开时弹出确认框,是否打开
var popup=confirm("确定要弹窗吗?");
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
if (popup==true)
{
window.open (
"http://www.imooc.com","_blank","width=400px,height=500px"
);
}
eles
{
alert ("欢迎下次光临!");
}
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
这样是否正确呢