document.onmousemove = function(ev){
var div = document.getElementById('div');
var scrollTop = document.documentElement.scrollTop||document.body.scrollTop;//滾動(dòng)條距離網(wǎng)頁頂部距離
oEven = ev||even;
div.style.left = oEven.clientX + 'px';//鼠標(biāo)
div.style.top = oEven.clientY + scrollTop + 'px';//
}