Authored by chenchao

fix

... ... @@ -140,7 +140,8 @@ var GetRequestParams = function() {
var str = url.substr(1);
strs = str.split("&");
for(var i = 0; i < strs.length; i ++) {
theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);
var paramNameVal = strs[i].split("=");
theRequest[paramNameVal[0]] = unescape(paramNameVal[1]);
}
}
return theRequest;
... ...