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