jQuery事件mousedown总是返回root

时间:2012-11-29 14:59:34

标签: javascript jquery

当我绑定这样的事件时:

Selector.prototype.setupEventHandlers = function() {
    var cssSelector = '*:not(.' + this.ignoreClass + ')';
    jQuery(cssSelector).bind("mousedown", { 'self': this }, this.onSelectorMousedown);
};

让EventHandler像这样:

 Selector.prototype.onSelectorMousedown = function(e) {
     self = this;
     ...
 }

我总是使用self = HTMLParagraphElement而不是真正被点击过的元素。

0 个答案:

没有答案