首页 > 其他 > 详细

GetParam(name)

时间:2014-07-08 10:17:39      阅读:389      评论:0      收藏:0      [点我收藏+]
 function GetParam(name) {
            var match = new RegExp(name +  
                "=*([^&]+)*", "i").exec(location.search);   
            if (match == null)             
                match = new RegExp(name + "=(.+)", "i").exec(location.search);  
            if (match == null) return null;             
                match = match + "";           
            //**convert match to a string       
            result = match.split(",");          
            return decodeURIComponent(result[1]);     
        } 

 

GetParam(name),布布扣,bubuko.com

GetParam(name)

原文:http://www.cnblogs.com/sntetwt/p/3830823.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!