大家都在我的移动应用程序中,在不使用ajax的各种页面之间传递变量我正在使用cookie。我正在设置cookie:
$.cookie("userName", userName, { path: '/' });
在js文件中,在另一个html文件中,我将其作为:
访问它$.cookie('userName');
但是我得到了错误:
Result of expression '$.cookie' [undefined] is not a function
我有一个用于cookie的js文件:jquery.cookie.js
它包含以下代码:
/*jshint eqnull:true */
/*!
* jQuery Cookie Plugin v1.1
* https://github.com/carhartl/jquery-cookie
*
* Copyright 2011, Klaus Hartl
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://www.opensource.org/licenses/mit-license.php
* http://www.opensource.org/licenses/GPL-2.0
*/
(function($, document) {
var pluses = /\+/g;
function raw(s) {
return s;
}
function decoded(s) {
return decodeURIComponent(s.replace(pluses, ' '));
}
$.cookie = function(key, value, options) {
// key and at least value given, set cookie...
if (arguments.length > 1 && (!/Object/.test(Object.prototype.toString.call(value)) || value == null)) {
options = $.extend({}, $.cookie.defaults, options);
if (value == null) {
options.expires = -1;
}
if (typeof options.expires === 'number') {
var days = options.expires, t = options.expires = new Date();
t.setDate(t.getDate() + days);
}
value = String(value);
return (document.cookie = [
encodeURIComponent(key), '=', options.raw ? value : encodeURIComponent(value),
options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
options.path ? '; path=' + options.path : '',
options.domain ? '; domain=' + options.domain : '',
options.secure ? '; secure' : ''
].join(''));
}
// key and possibly options given, get cookie...
options = value || $.cookie.defaults || {};
var decode = options.raw ? raw : decoded;
var cookies = document.cookie.split('; ');
for (var i = 0, parts; (parts = cookies[i] && cookies[i].split('=')); i++) {
if (decode(parts.shift()) === key) {
return decode(parts.join('='));
}
}
return null;
};
$.cookie.defaults = {};
})(jQuery, document);
我也在我的html文件中导入了上面的js文件。我也试过setCookie('userName', 'userName', 1);
为什么会这样?任何建议将不胜感激。
答案 0 :(得分:4)
确保您的jquery.cookie.js
实际包含在内,并且在之前包含 $.cookie()
。
答案 1 :(得分:2)
检入您的控制台如果加载了jquery.cookie.js
且没有错误。
您可以在this Webmasters.SE question中找到有关在浏览器中打开控制台的信息。
答案 2 :(得分:2)
检查您是否正确导入了jquery.cookie.js,并在准备好后尝试访问jquery函数
$(function(){
$.cookie('userName');
})
或
$(document.ready(function(){
$.cookie('userName');
}));
答案 3 :(得分:1)
我有同样的问题。确保在 jquery.cookie.js之后没有再次调用jquery-1.9.0.min.js lib 。
网页通常有主页和详细页面。也许你在详细页面再次引用Jquery库。
答案 4 :(得分:0)
if (typeof $.cookie("user-popup") == "undefined") {}

你可以检查这个以检查Cookie值是否可用