請(qǐng)問(wèn)一下這個(gè)代碼為什么總是彈窗提醒兩次啊
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>close()</title>
? <script type="text/javascript">
? ? ?var mywin=confirm("確認(rèn)是否打開(kāi)這個(gè)網(wǎng)址?");
?function rec(){
? ? ?if(mywin==true){
? ? ? ? ?document.write("http://idcbgp.cn");
? ? ?}
? ? ?else{
? ? ? ? ?ducument.write("111");
? ? ?}
?}
?
?//rec();
? </script>
</head>
<body>
? ?
</body>
</html>
2022-12-12
mywin要定義在函數(shù)內(nèi)部,var定義全局變量,函數(shù)內(nèi)部找不到mywin,找到外面的mywin,外面的也會(huì)執(zhí)行,函數(shù)也會(huì)執(zhí)行,不知道對(duì)不對(duì),參考參考??