欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js获取变量

程序员文章站 2023-11-22 08:48:10
function querystring(qs){ s=location.href; s=s.replace("?","?&").split("&"); re="...
function querystring(qs){
s=location.href;
s=s.replace("?","?&").split("&");
re="";
for(i=1;i<s.length;i++){
if(s[i].indexof(qs+"=")==0){
  re=s[i].replace(qs+"=","");
  }
}
  return re;
}
非常不错的获取传递来的变量