【发布时间】:2012-09-14 03:24:43
【问题描述】:
我正在使用this plugin建立一个cookie
一切正常,但在 IE7 和 IE8 中
这是我的 JS 代码:
jQuery(document).ready(function() {
jQuery(function() {
if (jQuery.cookie('shownDialog') != 'true') {
window.onload = document.getElementById('lightbox-22556401244951').click();
}
jQuery.cookie('shownDialog', 'true', {expires: 7});
});
});
不知道为什么它不能只在 IE7 和 IE8 中工作?
【问题讨论】:
标签: jquery internet-explorer cookies jquery-cookie