您可以使用
了解如何获取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
答案 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] );