2012-07-19 94 views
1

大家好在我的移动应用程序中传递变量之间的各种页面之间没有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); 为什么这样呢?任何建议将不胜感激。

回答

4

确保您的jquery.cookie.js实际上包含在内,并且它包含之前您请致电$.cookie()

+0

我使用权jquery.cookie.js? – PPD 2012-07-19 10:05:57

+0

看起来像它。我认为重要的是确保它在你调用'$ .cookie()'之前加载*。 – 2012-07-19 10:27:38

+0

是的,它是正确导入和侧头标签。 – PPD 2012-07-19 10:33:51

2

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

您可以在浏览器中找到关于在您的浏览器中打开控制台的信息,请参阅this Webmasters.SE question

2

检查是否已经正确输入jquery.cookie.js并尝试访问jQuery的功能,当他们准备好

$(function(){ 

$.cookie('userName'); 

}) 

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

})); 
+0

我曾尝试这两个选项,因为你建议仍然有相同的错误。请看看我的jquery.cookie.js文件。这个文件是正确的吗? – PPD 2012-07-19 10:15:28

+0

谢谢你的建议,现在它正在工作。 – PPD 2012-07-19 10:49:41

1

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

网页通常有主页和详细页面。也许你会再次详细介绍Jquery库。

0

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

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

相关问题