js 获取转换网址中文参数
var search = decodeURI(location.search).substr(1); console.log(search);
decodeURI 方法
返回一个已编码的统一资源标识符 (URI) 的非编码形式。
decodeURI(URIstring)
必要的 URIstring 参数代表一个已编码 URI 的值。
var search = decodeURI(location.search).substr(1); console.log(search);
decodeURI 方法
返回一个已编码的统一资源标识符 (URI) 的非编码形式。
decodeURI(URIstring)
必要的 URIstring 参数代表一个已编码 URI 的值。