спасибо !! но что то не работает (
может Вы в свою программу добавите счётчик?
простите что опять без тегов
function getXmlHttp(){
var xmlhttp;
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}
document.addEventListener("contextmenu",function(e vnt){ event(evnt,"3")} );
document.addEventListener("dblclick",function(evnt ){ event(evnt,"2")} );
document.addEventListener("click",function(evnt){ event(evnt,"1") } );
var t;
function event(evnt,type){
clearTimeout(t);
t=setTimeout(function(){
var x=evnt.pageX-10,
y=evnt.pageY-10,
req = getXmlHttp();
req.open('GET', 'saveMouse.php?x='+x+"&y="+y+"&type="+счётчи к, true);
req.send(null);
},200);
}
Последний раз редактировалось Александр 60 лет, 20.11.2012 в 11:07.
|