下面我提到我的網頁內容 目前它只顯示彈出框僅僅秒,但我需要延長時間我不知道如何做到這一點彈出一個特定的時間後彈出關閉自動
腳本我用
<script type="text/javascript">
window.document.onkeydown = function (e)
{
if (!e){
e = event;
}
if (e.keyCode == 27){
lightbox_close();
}
}
function lightbox_open(){
window.scrollTo(0,0);
document.getElementById('light').style.display='block';
document.getElementById('fade').style.display='block';
}
function lightbox_close(){
document.getElementById('light').style.display='none';
document.getElementById('fade').style.display='none';
}
</script>
我的按鈕
<input type="submit" value="SUBMIT" onclick="lightbox_open();" />
poup箱
<div id="light">
<a href="#" onclick="lightbox_close();"></a>
<h3 th:text="${result}"></h3>
hi hello
</div>
<div id="fade" onClick="lightbox_close();"></div>
我在哪裏可以加我的當前腳本這一行? – boycod3
在lightbox_open函數裏面,因爲只有在打開lightbox – Anuraj
後才需要調用該函數,實際上該頁面正在重定向到另一個頁面,那麼可以嗎? – boycod3