DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> 打開新窗口關閉當前頁面不彈出關閉提示js代碼
打開新窗口關閉當前頁面不彈出關閉提示js代碼
編輯:關於JavaScript     
復制代碼 代碼如下:
<script type="text/javascript">
function closeIt() {
window.opener = '';
window.open('http://www.baidu.com');
window.open('', '_self');
window.close();
}
self.setInterval("newTime()", 1000)
var t = 4;
function newTime() {
if (t > 0) {
t = t - 1;
document.getElementById("txtTime").value = t
}
else if (t <= 0) {
closeIt();
}
else {
closeIt();
}
}
</script>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved