实现的功能
首先弹出confirm消息框
判断true 和 false
如果为true
点击按钮会打开bbs.douyeblog.top
不是true会打开douyeblog.top
代码如下
<html>
<head>
<script type="text/javascript">
var mymessage=confirm("打开?");
if(mymessage==true)
{function openwindow(){
window.open('http://bbs.douyeblog.top/','_target','width=400px,height=500px,menubar=no,toolbar=no')
}
}
else
{function openwindow(){
window.open('http://douyeblog.top/','_target','width=400px,height=500px,menubar=no,toolbar=no')
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openwindow()" />
</body>
</html>
评论(0)