• js 读取URL参数


    var p = new ParamManager();

    p.GetValue('key');

            function ParamManager()
            {
                
    this.Location = window.location;
                
    this.ParamArray = new Array();
                
    this.onInit();
            }
            ParamManager.prototype.onInit
    =function(){
            
                
    var l = new String(this.Location);
                
    var paramstring = new String(l.substring(l.lastIndexOf('?')+1,l.length));
                
    this.ParamArray = paramstring.split('&');
                
    for(var i = 0;i<this.ParamArray.length;i++)
                {
                    
    this.ParamArray[i] = this.ParamArray[i].toString().split('=');
                }
           
            }
            ParamManager.prototype.GetValue
    =function(key){
               
    for(var i=0;i<this.ParamArray.length;i++)
               {
                    
    if(this.ParamArray[i][0== key)
                    {
                        
    return this.ParamArray[i][1];
                    }
               }
               
    return "null";
            }
  • 相关阅读:
    svn使用总结
    捕获JS 错误日志
    致敬 54岁的刘德华
    Mac 下 命令收藏
    坑人的七牛CDN
    【No.1】监控Linux性能25个命令行工具
    PAC 自动代理
    jquery 事件 多次绑定,多次触发,怎么清除历史绑定事件
    Squid 操作实践
    ntpdate[16603]: the NTP socket is in use
  • 原文地址:https://www.cnblogs.com/wubiyu/p/1277371.html
Copyright © 2020-2023  润新知