Uncaught TypeError: $.cookie is not a function for Dialog
Uncaught TypeError: $.cookie is not a function for Dialog
我注意到我的 jQuery 对话框不再保存 cookie 并继续弹出每个页面重新加载。我不确定发生了什么变化,因为这在将近 1 年的时间里运行良好。我抓取了 jQuery UI 和 js Cookie 的新副本,但我不明白为什么会出现错误:
Uncaught TypeError: $.cookie is not a function.
我的 jQuery 中是否需要更新某些内容?
<script src="<?php echo get_template_directory_uri(); ?>/jquery-ui.js"></script>
<script src="<?php echo get_template_directory_uri(); ?>/js.cookie.js"></script>
<script type="text/javascript">
( function($) {
$(document).ready(function() {
$(function() {
if( document.cookie.indexOf( "shipping_note" ) < 0 ) {
$( ".shipping-note-container" ).dialog({
modal: true,
resizable: false,
show: 'slide',
buttons: {
Ok: function() {
$( this ).dialog( "close" );
$.cookie('shipping_note', 'Ok', { path: '/', expires: 7 });
}
}
});
}
});
});
} ) ( jQuery );
如果您使用的是 js js-cookie 库,方法是:
Cookies.set('name', 'value');
Cookies.get('name');
.....
相反,如果您想使用 jQuery plugin,您需要在本地下载它,然后您可以将其用作:
$.cookie("example", "foo");
我注意到我的 jQuery 对话框不再保存 cookie 并继续弹出每个页面重新加载。我不确定发生了什么变化,因为这在将近 1 年的时间里运行良好。我抓取了 jQuery UI 和 js Cookie 的新副本,但我不明白为什么会出现错误:
Uncaught TypeError: $.cookie is not a function.
我的 jQuery 中是否需要更新某些内容?
<script src="<?php echo get_template_directory_uri(); ?>/jquery-ui.js"></script>
<script src="<?php echo get_template_directory_uri(); ?>/js.cookie.js"></script>
<script type="text/javascript">
( function($) {
$(document).ready(function() {
$(function() {
if( document.cookie.indexOf( "shipping_note" ) < 0 ) {
$( ".shipping-note-container" ).dialog({
modal: true,
resizable: false,
show: 'slide',
buttons: {
Ok: function() {
$( this ).dialog( "close" );
$.cookie('shipping_note', 'Ok', { path: '/', expires: 7 });
}
}
});
}
});
});
} ) ( jQuery );
如果您使用的是 js js-cookie 库,方法是:
Cookies.set('name', 'value'); Cookies.get('name'); .....
相反,如果您想使用 jQuery plugin,您需要在本地下载它,然后您可以将其用作:
$.cookie("example", "foo");