DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery.query.js 取參數的兩點問題分析
jQuery.query.js 取參數的兩點問題分析
編輯:JQuery特效代碼     
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 '';
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved