|
藍森林 http://www.lslnet.com 2006年8月25日 8:28
請教網頁自動關閉的問題
用asp寫的程序,想點擊刪除後,自動關閉當前頁面,請教怎麼做? |
[html]
<script language="javascript">
function clock(){i=i-1
document.title="本窗口將在"+i+"秒後自動關閉!";
if(i>0)setTimeout("clock();",1000);
else self.close();}
var i=5
clock();
</script>
[/html]
類似的貼子不要到處發了. |
|