//js接收并处理通过URL传过来的对象
var query = window.location.search;
query = decodeURI(query);
var obj=query.match(/\{[^\}]+\}/)[0];
obj= obj.replace(/%3A/g,':');
obj= JSON.parse(obj);
//js接收并处理通过URL传过来的对象
var query = window.location.search;
query = decodeURI(query);
var obj=query.match(/\{[^\}]+\}/)[0];
obj= obj.replace(/%3A/g,':');
obj= JSON.parse(obj);