內(nèi)容摘要:
在像成都網(wǎng)站建設(shè)首頁(yè)這樣的資源比較集中的頁(yè)面中,那些欄目最經(jīng)常被用戶點(diǎn)擊?居左居右對(duì)廣告的點(diǎn)擊率的影響是什么?
“一切用數(shù)字說(shuō)話”:以上問題都可以通過跟蹤瀏覽器客戶端的鼠標(biāo)行為,按區(qū)塊對(duì)頁(yè)面進(jìn)行點(diǎn)擊行為的分析。頁(yè)面點(diǎn)擊統(tǒng)計(jì)系統(tǒng)設(shè)計(jì)
輸出:頁(yè)面上不同區(qū)域的點(diǎn)擊量統(tǒng)計(jì)。
數(shù)據(jù)采集:
原理:通過JAVASCRIPT的鼠標(biāo)觸發(fā)事件,動(dòng)態(tài)將當(dāng)前鼠標(biāo)的坐標(biāo),客戶端的分辨率傳遞到統(tǒng)計(jì)服務(wù)器上。
如果要往服務(wù)器端發(fā)請(qǐng)求,做計(jì)數(shù)器,插入一個(gè)圖片是最簡(jiǎn)單的方法,這里是一個(gè)簡(jiǎn)單的
例子:
/* (C) 2003 - 2004 www.dmvi.cn
* Free for all users, but leave in this header
* click based user analysis:
* usage: touch a empty click.gif or create a static page on at server
* including following script into your html page
*/
document.onclick = clickStat;
function clickStat() {
// create a new empty element
var image = document.createElement();
// record client screen size and mouse coordinate
tempX = event.clientX + document.body.scrollLeft;
tempY = event.clientY + document.body.scrollTop;
image.src = http://www.dmvi.cn/click_stats.php?width= + screen.width
+ &x=+ tempX + &y= + tempY;
image.height = 0;
image.width = 0;
//send request to stat server
document.body.insertBefore(image);
return true;