大家好在我的移动应用程序中传递变量之间的各种页面之间没有Ajax我使用cookie。我设置的cookie,如:
$.cookie("userName", userName, { path: '/' });
在js文件,并在另一个HTML文件中,我访问它:
$.cookie('userName');
但我得到的错误是:
Result of expression '$.cookie' [undefined] is not a function
我有一个js文件的cookie为: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);
为什么这样呢?任何建议将不胜感激。
我使用权jquery.cookie.js? – PPD 2012-07-19 10:05:57
看起来像它。我认为重要的是确保它在你调用'$ .cookie()'之前加载*。 – 2012-07-19 10:27:38
是的,它是正确导入和侧头标签。 – PPD 2012-07-19 10:33:51