0
我正試圖讓這個簡單的cookie工作在我簡單的colorbox中,但事實並非如此。 有人可以指出我在正確的方向,因爲我不是很方便與JavaScript。 ThxCookie不能在colorbox加載彈出窗口中工作
<script type="text/javascript">
$(document).ready(function() {
setTimeout(function() {
$.fn.colorbox({href:"{{ 'missroberta-international.jpg' | url_asset }}", open:true});
}, 1000);
setTimeout(function() { $.fn.colorbox.close(); }, 8000);
$(function() {
if ($.cookie('test_status') != '1')
{
setTimeout(function()
{
alert('foo');
jQuery.cookie('test_status', '1', { expires: 31});
}, 1000);
}
}
</script>