我可以使用此
动态跟踪鼠标坐标$(document).ready(function()
{
$().mousemove(function(e)
{
$('p').html("X Axis : " + e.pageX + " | Y Axis " + e.pageY);
});
});
这样,每个鼠标动态移动的数字都会改变。我想要做的是保存所有坐标。它应该保存在onforeunload上。如何保存所有号码?我正在考虑像
那样追加iframe onbeforeunloadsave.php?COORDS = 162x412-143x716-678x12
我该怎么做?
答案 0 :(得分:2)
尝试这种方法......
一种在隐藏变量中保存这些坐标并在事件“onbeforeunload”上调用隐藏变量值以获取它们并保存必要的方法。
答案 1 :(得分:2)
尝试这样的事情
var moves = [];
$().mousemove(function(e){
moves.push(e.pageX + "x" + e.pageY)
});
然后
window.onbeforeunload = function() {
$.post( your_url , moves.join('-'));
}