url取参数

Posted yazhng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了url取参数相关的知识,希望对你有一定的参考价值。

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取参数的主要内容,如果未能解决你的问题,请参考以下文章

js取url参数

取url地址参数

取当前的地址栏的Url和url中的参数

Cocos Creator 获取当前URL取参数

怎么js代码取问号后面参数

php如何获取url的参数