未定义Javascript错误引用容器

时间:2014-11-05 17:46:55

标签: javascript

我已经有这个错误了很长一段时间了,我不知道如何解决它。有人能指出我正确的方向吗?

var xxx,yyy;

        if (e.offsetY == null) {
            var offset = $(container).offset();

            //this.clickX = e.pageX - offset.left;
           // this.clickY = e.pageY - offset.top; FIX

            xxx = (e.pageX - offset.left) - this.chart.plotLeft;
            yyy = (e.pageY - offset.top) - this.chart.plotTop - 50;
        }
        else {
            xxx = e.offsetX - this.chart.plotLeft;
            yyy = e.offsetY - this.chart.plotTop;
        }
        e.offsetY = e.offsetY ? e.offsetY : e.pageX - $(container).offset().top;

        if (!this.chart.isInsidePlot(xxx, yyy)) {

            console.log("{FN LINE} drag -> return on [IF !chart.isInsidePlot]")

            return;
        }

0 个答案:

没有答案