关于jquery选择器 选择非当前元素,然后绑定事件

2024-11-25 12:52:44
推荐回答(2个)
回答1:

直接绑在body上呀,如这样写就行了,
$('body').click(function(e){
if ($(e.target).attr('id') !== 'select控件的id') {
// 隐藏option 选项
}
});

回答2:

$("*").not("currentSelect").click(function(){
    ///..
})