方法说明:
该方法使可用来重写 querystring.stringify
语法:
querystring.escape
接收参数:
无
源码:
QueryString.escape = function(str) {
return encodeURIComponent(str);
};