自己的答案僅供參考
function openWindow(){ ? ?var message=confirm("確定打開(kāi)網(wǎng)站嗎?"); ? ?if(yn==true){ var mywin=prompt("請(qǐng)輸入網(wǎng)址:"); if(mywin="http://idcbgp.cn/") { ? ?window.open('http://idcbgp.cn/','_blank','width=400,height=500,menubar=no,toolbar=no') } } else{} } openWindow();
2016-03-23
function openWindow(){ ?
??var message=confirm("確定打開(kāi)網(wǎng)站嗎?"); ??
if(message==true) { ??
var url=prompt("請(qǐng)輸入一個(gè)網(wǎng)址","http://idcbgp.cn/");
?window.open(url,'_blank','width=400,height=500,menubar=no,toolbar=no')?
}
?}?
else
{window.close();}?
}?
2016-03-23
感覺(jué)你的程序有問(wèn)題啊
2016-03-23
<!DOCTYPE HTML>
<html>
<head>
? ?<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
? ?<title>innerHTML</title>
? ?<script type="text/javascript">
? ? ? function openWindow()
? ? ? { ? ?var message=confirm("確定打開(kāi)網(wǎng)站嗎?");
? ? ? ? ? if(message==true){
? ? ? ? ? ? ? ? ? window.open('http://idcbgp.cn/','_blank',
? ? ? ? ? ? ? ? ? ? ? ? ? 'width=400,height=500,menubar=no,toolbar=no')
? ? ? ? ? } else{
? ? ? ? ? ? ? ?//點(diǎn)擊取消執(zhí)行將為空
? ? ? ? ? }
? ? ? }
? ? ? openWindow();
? ?</script>
</head>
<body>
</body>
</html>
2016-03-23
if(massage==true)
2016-03-23
yn是什么