跳转到内容

JavaScript/鼠标操作

来自维基教科书,开放的书籍,开放的世界


JavaScript 控制台测试

[编辑 | 编辑源代码]

测试 x,y

window.onmouseover = function(){document.title = [event.x,event.y];};

测试 offsetX,offsetY

window.onmouseover = function(){document.title = [event.offsetX,event.offsetY];};

测试 clientX,clientY

window.onmouseover = function(){document.title = [event.clientX,event.clientY];};

测试 pageX,pageY

window.onmouseover = function(){document.title = [event.pageX,event.pageY];};

参考资料

[编辑 | 编辑源代码]

进一步阅读

[编辑 | 编辑源代码]


华夏公益教科书