所以我有这个网址“https://www.site.be/pand/titel-van-het-pand-t8500-17082-4”,我必须在网址的后面提取参考编号。在这个示例“t8500-17082-4”中,GTM可以放入这样的自定义维度:
var dimensionValue = 'REFERENCE_CODE_HERE';
ga('set', 'dimension1', dimensionValue);
网址末端的引用代码可以以-t8 ...或t9开头......
答案 0 :(得分:0)
在GTM中转到“变量” - > “新” - > “自定义JavaScript”并输入:
function(){
var myRegexp = /(-t8|-t9)(.*)/g; //assuming you only ever have one "-t8"/"-t9" in the URL
var result = document.URL.match(myRegexp);
if(result !== null){
return result[0];
}else{
return null; //or whatever you want to return if the ID is not in the URL
}
}