jQuery选择“不是这个而不是这个中的一切”

时间:2011-02-18 20:31:36

标签: jquery

我有一个插件

$.fn.dropDown = function(options){
    this.each(function(){
        var $this= $(this);
        $(document).click(function(e){
            if($(e.target).not($this) && $(e.target).not($this).find('*')){
                // do stuff
            }
        }); 

    });
}

我想选择“不是这个而不是所有内容”,到目前为止,这不起作用。

1 个答案:

答案 0 :(得分:4)

这应该有效:

var that = this;
$(document).click(function(e) {
    if( e.target != that && !$.contains(that, e.target) ) {
        // do stuff
    }
});