2012-07-19 39 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值是否可用

相關問題