getURLParameter的想法和建议

时间:2018-02-28 14:03:20

标签: jquery regex

您可以使用

了解如何获取campaign.id.clickid的价值
function getURLParameter(e) {
   return decodeURI((new RegExp(e + "=(.+?)(&|$)").exec(location.search) || [, null])[1])
}

示例网址:

http://sample.com/?in=fsdfsdf:37378&x_source=VP57835:campaign.id.clickid

1 个答案:

答案 0 :(得分:0)

使用您提供的功能,您可以获取URL参数 因此,获取x_source值并将其拆分为双冒号:

function getURLParameter(e) {
   return decodeURI((new RegExp(e + "=(.+?)(&|$)").exec(location.search) || [, null])[1])
}

var urlParameter = getURLParameter( 'x_source' );
var val = urlParameter.split(':');

console.log( val[1] );