我在这里面临一个奇怪的问题:
在萤火虫我看到这个错误:
$ 不是函数
_handleEvent() in pro.js
e = load
var handlers = this.events[e.type], el = $(this);
完整功能定义如下:
_handleEvent : function(e) {
var returnValue = true;
e = e || Event._fixEvent(window.event);
var handlers = this.events[e.type], el = $(this);
for (var i in handlers) {
el.$$handleEvent = handlers[i];
if (el.$$handleEvent(e) === false) returnValue = false;
}
return returnValue;
}
你们能帮我看看这里为什么会出现这个错误。我猜它与jquery无关。
注意:它给出了错误:$(this) 不是 IE 中的函数