我正在尝试使用自定义 JavaScript 宏(在 Google 跟踪代码管理器中)从页面中获取项目(特别是价格标签,例如:3,09 欧元)。然后将其替换为 3.09,以便 GTM 使用它。
所以我的javascript需要:
- 从 DOM 中获取价格(类 rightPrice)
- 去掉 € 符号和空格并将 , 替换为 .
现在我已经把这个拼凑起来了,但我觉得这甚至不是正确的方向:
function() {
var txt=document.getElementByClassName("rightPrice").innerHTML;
document.write(txt);
//somehow alter the value
return now.productPrice();
}