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

url取参数

时间:2018-04-26 12:05:52      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:null   ||   define   exp   val   ==   get   regex   location   

function getparms(name) {
  var regex = new RegExp("[?&]" + encodeURIComponent(name) + "\\=([^&#]+)");
  var value = (location.search.match(regex) || ["", ""])[1];
  if (value === ‘undefined‘ || value === ‘null‘) value = ‘‘;
  return decodeURIComponent(value);
};

url取参数

标签:null   ||   define   exp   val   ==   get   regex   location   

原文地址:https://www.cnblogs.com/yazhng/p/8949873.html

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