我的网页上有一个产品列表,其详细信息以模态弹出窗口显示。 我尝试使用 statcounter 的自定义标记,如其网站[http://statcounter.com/support/knowledge-base/276/] 所示,但它仅适用于一个产品类别。 I我使用相同的模态体来显示不同的产品。 以下是codesnippet:
var sc_project = $#@$#@;
var sc_invisible = 0;
var sc_security = "$#*$*##$";
var _statcounter = _statcounter || [];
//function to push custom statcounter for products_of_interest
function _productStatCounter(product_of_interest) {
_statcounter.push({ "tags": { "data-project": product_of_interest } });
}
// jquery to push projects based on click
$(".portfolio-link").click(function () {
test_product = ($(this).attr("href"));
if(test_product !== undefined){
product_of_interest = ($(this).attr("data-project"));
_productStatCounter(product_of_interest);
} else {
return;
}
});
我使用jquery根据产品的点击推送product_of_interest但是statcounter只显示一个产品的信息而不是所有产品。由于我的产品网络应用程序是单页面,所以我使用模态体在弹出屏幕上显示不同的产品。有没有办法在弹出窗口上使用statcounter?