我有一个插件
$.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
}
});
});
}
我想选择“不是这个而不是所有内容”,到目前为止,这不起作用。
答案 0 :(得分:4)
这应该有效:
var that = this;
$(document).click(function(e) {
if( e.target != that && !$.contains(that, e.target) ) {
// do stuff
}
});