首页 > 代码库 > location对象,将url解析为独立片段search属性截取传递的参数

location对象,将url解析为独立片段search属性截取传递的参数

通过location对象的search属性截取字符串传递过来的参数

search ?item=hello&name=auto&age=25 返回url中传递的参数,以?开头

function getQueryStringArgs(){	var qs=(location.search.length>0?location.search.substring(1):""); //去除?	args={}, 	items=qs.length?qs.split("&"):[];  	item=null,	name=null,	value=http://www.mamicode.com/null,"=");				name=decodeURIComponent(item[0]);				value=http://www.mamicode.com/decodeURIComponent(item[1]);>

  最后,每个字符串查询参数都成了,args对象的属性,value为属性值

location对象,将url解析为独立片段search属性截取传递的参数