码迷,mamicode.com
首页 > Web开发 > 详细

js 获取URL参数

时间:2017-08-15 18:52:35      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:hash   mat   amp   ret   url参数   不能   location   type   new   

 

注:不能获取紧跟?后的第一参数

String.prototype.getParms=function(name){
    var reg = new RegExp(‘(^|&)‘ + name + ‘=([^&]*)(&|$)‘, ‘i‘);
    return this.match(reg)[2];
};
var gid=(window.location.hash).getParms(‘pid‘);

 

js 获取URL参数

标签:hash   mat   amp   ret   url参数   不能   location   type   new   

原文地址:http://www.cnblogs.com/web-fusheng/p/7366779.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!