1. 參數中存在空格時取到的值中空格被替換為加號:
2. 當參數某個key的value不存在時,獲取到的value並不是空/null 而是true。
在網路上找到了個解決方案,可以參考下(是否有其他副作用暫時未實驗出)
1. 空格變加號
在jQuery.query. js檔案中找到下面程式碼
toString: function() {
var i = 0, queryString = [], chunks = [], self = this;
var encode = function(str) {
str = str "";
//if ($ spaces) str = str.replace(/ /g, " ");
return encodeURIComponent(str);
};
註解掉if ($spaces) str = str.replace(/ /g, " "); 那一行即可
2. value為空的情況
複製程式碼
程式碼如下:
get: function (key)
{
var target = this.GET(key);
if (typeof (target) == 'boolean')
return '';
if (is(target, Object))
return jQuery.extend(true, {}, target);
else if (is(target , Array))
return target.slice(0);
return target; }, 加入if (typeof (target) == 'boolean')return ' ';