Authored by liangxs

埋点修改

... ... @@ -191,7 +191,8 @@ function reMarginFooter(fixedElement) {
a.async = 1;
a.src = j;
m.parentNode.insertBefore(a, m);
})(window, document, 'script', ('https:' === document.location.protocol ? 'https' : 'http') + '://' + 'cdn.yoho.cn/yas-jssdk/1.0.15/yas-debug.js', '_yas');
})(window, document, 'script', ('https:' === document.location.protocol ? 'https' : 'http') + '://' +
'cdn.yoho.cn/yas-jssdk/1.0.15/yas-debug.js', '_yas');
(function() {
var uid = getUid();
... ... @@ -202,20 +203,31 @@ function reMarginFooter(fixedElement) {
if (window._yas) {
window._yas(1 * new Date(), '1.0.15', 'yohobuy_m', uid, '', '');
$('.buriedpoint').click(function(e) {
$(document).on('click', 'a.buriedpoint', function(e) {
var bpIdArr = $(this).attr('data-bp-id').split('_');
var jsonData = {
page: bpIdArr[0],
floor: bpIdArr[1],
data: bpIdArr[2]
};
console.log(jsonData);
console.log(Boolean(parseInt(bpIdArr[3])));
window._yas.sendCustomInfo(jsonData, Boolean(parseInt(bpIdArr[3])));
document.location.href = $(this).attr('href');
});
}
}());
$(document).ready(function() {
setTimeout(function() {
var arr = document.querySelectorAll('a.buriedpoint'),
i;
for (i = 0; i < arr.length; i++) {
arr[i].setAttribute('onclick', 'return false');
}
}, 2000);
});
$header.on('touchstart', 'a', function() {
$header.find('a').removeClass('highlight');
$(this).addClass('highlight');
... ...