我的代码在 Firefox 中运行,但在使用 Internet Explorer 时遇到问题。当它执行时,我得到一个错误并且程序没有正确执行。描述说:
clientX 为 null 或不是对象。
var cursorLocation = new function(){
this.x = 0;
this.y = 0;
//This function is called onmousemove to update the stored position
this.update = function(e){
var w = window, b = document.body;
this.x = e.clientX + (w.scrollX || b.scrollLeft || b.parentNode.scrollLeft || 0);
this.y = e.clientY + (w.scrollY || b.scrollTop || b.parentNode.scrollTop || 0);
}} document.onmousemove=function(e){ cursorLocation.update(e); };