javascript使用location.search的示例

复制代码 代码如下:


function GetRequest() {    
    var url = location.search; //获取url中"?"符后的字串    
    var theRequest = new Object();    
    if (url.indexOf("?") != -1) {       
        var str = url.substr(1);       
        strs = str.split("&");       
        for(var i = 0; i < strs.length; i ++) {          
            theRequest[strs[i].split("=")[0]]=unescape(strs[i].split("=")[1]);
        }
    }
    return theRequest;

  var Request = new Object();
  Request = GetRequest();
    var 参数1,参数2,参数3,参数N;
    参数1 = Request['参数1'];
    参数2 = Request['参数2'];
    参数3 = Request['参数3'];
    参数N = Request['参数N'];
   

您可能感兴趣的文章:

相关文章

最新评论

站长推荐

正版 Windows 10

正版Windows 10 家庭/专业版,操作系统限时抢购[¥1088→¥248]

站长推荐

正版 Office 软件

Microsoft Office 2016/2019/365 正版最低价仅需[ ¥148元]

大家感兴趣的内容

最近更新的内容

常用在线小工具

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdzwxw.html