1

大家好,在我的移动应用程序中,在没有 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); 为什么会这样?任何建议将不胜感激。

4

5 回答 5

4

确保您jquery.cookie.js的实际包含在内,并且您调用$.cookie().

于 2012-07-19T10:03:29.660 回答
2

检查你的控制台如果jquery.cookie.js加载没有错误。

您可以在此 Webmasters.SE 问题中找到有关在浏览器中打开控制台的信息。

于 2012-07-19T10:01:51.130 回答
2

检查您是否正确导入了 jquery.cookie.js 并在它们准备好时尝试访问 jquery 函数

$(function(){

$.cookie('userName');

})

或者

$(document.ready(function(){
$.cookie('userName');

}));
于 2012-07-19T10:05:24.650 回答
1

我有同样的问题。确保在 jquery.cookie.js之后没有再次调用 jquery-1.9.0.min.js lib

网页通常有主页面和详细页面。也许您在详细页面中再次参考 Jquery 库。

于 2014-05-22T09:09:42.897 回答
0

 if (typeof $.cookie("user-popup") == "undefined") {}

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

于 2015-03-10T11:26:32.357 回答