qq_GreenOrRed_0
2016-09-02 19:57
如何在跳转的时候,confirm后点击取消后,能跳转到新打开的慕课网?
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>confirm</title>
<script type="text/javascript">
function rec(){
var mymessage=confirm("你是女士吗?");
if(mymessage==true)
document.write("你是女士");
else
document.write("你是男士");
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,弹出确认对话框" />
</body>
</html>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>confirm</title>
<script type="text/javascript">
function rec()
{
if(confirm("是否打开新窗口"))
{
var url = prompt("请输入你的网址","http://www.baidu.com")
window.open(url,"_balnk","width=400,height=800")
}
else
{
window.open("http://http://www.imooc.com","_balnk","width=400,height=800")
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,弹出确认对话框" />
</body>
</html>
JavaScript入门篇
739817 学习 · 9566 问题
相似问题