});
//统计QB页用户名片的展现量、查看QB页用户名片的用户数
$('.user-name').on('mouseenter', function (e) {
d({
'page': 'qb',
'type': 2060,
'action': 'hover',
'area': 'user-name'
});
}).on('click', function (e) {
d({
'page': 'qb',
'type': 2060,
'action': 'click',
'area': 'user-name'
});
});
//“向TA求助”的点击量、点击用户数
$('body').on('click', '.fixed-ask, .fixed-ask-e', function (e) {
d({
'page': 'qb',
'type': 2060,
'action': 'click',
'area': 'fixed-ask'
});
});
// “举报“下“描述不清”等三项的展现量(PV)、 “描述不清”等三项的点击总量、 “描述不清”等三项的点击用户数
$('body').on('mouseenter', '.gt-accuse .accuse-enter', function (e) {
d({
'page': 'qb',
'type': 2060,
'action': 'hover',
'area': 'accuse-enter'
});
}).on('click', '.gt-accuse a', function (e) {
d({
'page': 'qb',
'type': 2060,
'action': 'c
本章未完,请点击下一页继续阅读!