這是根據(jù)評(píng)論還有自己的總結(jié)寫(xiě)出來(lái)的,算標(biāo)準(zhǔn)答案嗎?
? ? function openWindow(){
? ? var myopen=confirm("是否打開(kāi)?")// 新窗口打開(kāi)時(shí)彈出確認(rèn)框,是否打開(kāi)
? ? if(myopen==true){
? ? // 通過(guò)輸入對(duì)話(huà)框,確定打開(kāi)的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
? ? var mywin=prompt("","http://idcbgp.cn/")?
? ? if(mywin!=null){
? ? //打開(kāi)的窗口要求,寬400像素,高500像素,無(wú)菜單欄、無(wú)工具欄。
? ? window.open("http://idcbgp.cn/","_blank","width=400,height=500,menubar=no,toolbar=no");
? ? }
? ? else{}
? ? }
? ? else{}
? ? }
2019-09-13
mywin;是問(wèn)了人才知道的簡(jiǎn)寫(xiě)板,其實(shí)和document.write(mywin)一致
2019-09-13
????
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title>??
? <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>? ?
? <script type="text/javascript">?
? ? function str(){
? ? ? ? var win=confirm("是否打開(kāi)窗口?");
? ? ? ? var mywin=window.open('http://idcbgp.cn','_blank','width=400,height=500,menubar=no,toolbar=no')
? ? ? ? if(win=true)
? ? ? ? {
? ? ? ? ? ? mywin;
? ? ? ? }
? ? ? ? else
? ? ? ? {
? ? ? ? ? ? mywin.close();
? ? ? ? }
? ? }
? </script>?
?</head>?
?<body>?
? ? <input type="button" value="新窗口打開(kāi)網(wǎng)站" onclick="str()" />?
?</body>
</html>