我是jQuery中的絕對新手。我在學習,但有一個聖誕節消息,我需要立即啓動並運行。設置一個jQuery cookie只顯示一次popup
我已經在頁面的標題包括這些:
<script type="text/javascript" src="scripts/jquery-1.7.min.js"></script>
<script type="text/javascript" src="scripts/jquery.cookies.2.2.0.min.js"></script>`
然後接着用一個jQuery彈出消息。那就是:
<script type="text/javascript">
$(document).ready(function() {
var id = '#dialog';
//Get the screen height and width
var maskHeight = $(document).height();
var maskWidth = $(window).width();
//Set height and width to mask to fill up the whole screen
$('#mask').css({'width':maskWidth,'height':maskHeight});
//transition effect
$('#mask').fadeIn(1000);
$('#mask').fadeTo("slow",0.7);
//Get the window height and width
var winH = $(window).height();
var winW = $(window).width();
//Set the popup window to center
$(id).css('top', winH/2-$(id).height()/2);
$(id).css('left', winW/2-$(id).width()/2-220);
//transition effect
$(id).fadeIn(2000);
//if close button is clicked
$('.window .close').click(function (e) {
//Cancel the link behavior
e.preventDefault();
$('#mask').hide();
$('.window').hide();
});
//if mask is clicked
$('#mask').click(function() {
$(this).hide();
$('.window').hide();
});
});
</script>
在body
我已經把消息:
<div style="top: 199.5px; left: 200px; display: none;" id="dialog" class="window">
XMAS MESSAGE
<a href="#" class="close">Shut this popup.</a>
</div>
到目前爲止好。下一步將不會讓我的回頭客一遍又一遍地重複同樣的信息(推遲六十天就足夠了)。
所以我想用jQuery的cookie的插件設置cookie:
function setCookie() {
$.cookie('test_status', '1', { path: '/', expires: 60 });
return false;
}
然後被發現下一次訪問者點擊同一頁面,直到郵件過期未顯示女王的聖誕致辭。
現在if-else
語句是更高級的jQuery我還不熟悉。那麼,有人可以向我解釋嗎?
當您炒掉關閉事件運行的cookie功能。然後,在代碼頂部檢查cookie值。如果存在,則不顯示模式。 – Seth
jQuery不是一種語言,它不具有if語句。這只是一堆javascript代碼。 javascript中的if-else語句就像[任何編程語言中的條件語句](http://en.wikipedia.org/wiki/Conditional_(programming))。 – Esailija