我想僅顯示一次警報消息。怎麼樣?
例如:如果我打開Internet瀏覽www.stackoverflow.com,「該對話框必須僅在該時間出現」。如果我單擊任何其他鏈接或在同一頁面的菜單欄中選擇一些內容,則不需要再次顯示警報消息。如何僅使用jquery顯示警報消息一次?
我在哪裏更改我的代碼?
$(function() {
$("#dialog-modal").dialog({
height: 200,
width: 320,
modal: true
});
});
html頁面
<pre><div id="dialog-modal" title="School Holiday" style="background-color:#00F"><p style="color:#FFF; font-size:16px; text-align: center;">The ART will be closed on Friday.</p></div><pre>
我假設你的意思只有一次,即使他們刷新頁面? –
@abi:你說你正在使用「標題頁」;您是否使用服務器端技術PHP? –
是的,我使用PHP。 – Abi