javascript paysafe:Url Param Grabber

Posted

tags:

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

// Query-String Grabber
var urlP;
var match,
	pl = /\+/g, // Regex for replacing addition symbol with a space
	search = /([^&=]+)=?([^&]*)/g,
	decode = function(s) {
		return decodeURIComponent(s.replace(pl, " "));
	},
	query = window.location.search.substring(1);

urlP = {};
while (match = search.exec(query))
	urlP[decode(match[1]).toLowerCase()] = decode(match[2]);

// Grab "h" (SHA-256 hashed email)
if(urlP.h){
	bk_addPageCtx('e_id_s', urlP.h);
}

// Grab "bk_cid" (customer_id)
if(urlP.bk_cid){
	bk_addPageCtx('customer_id', urlP.bk_cid); //
}

以上是关于javascript paysafe:Url Param Grabber的主要内容,如果未能解决你的问题,请参考以下文章

如何在 ruby​​ on rails 中使用 paysafe 支付解决方案? [关闭]

html Paysafe:BlueKai CoreTag:GTM建议代码

python Paysafe:ET到DMP:用户数据API模板

如何通过 javascript/jQuery 中的 url 发送数组

Javascript - 链多个获取承诺

从 URL 中删除查询字符串