0

我的代码在 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); };
4

1 回答 1

1

你不应该new function(){...}在 javascript 中做。

有你的错误。


应该做这样的事情

var someFunction = function(){....};

var someVariable = new someFunction();
于 2012-08-13T17:33:47.963 回答