当前位置 : 主页 > 编程语言 > c++ >

jQuery隐藏点击事件外的div

来源:互联网 收集:自由互联 发布时间:2021-07-03
JQuery隐藏点击事件外的DIV $('body').click(function(e) { if(e.target.id != 'targetarea' e.target.id != 'targetarea') $('#targetarea').hide();})
JQuery隐藏点击事件外的DIV
$('body').click(function(e) {
    if(e.target.id != 'targetarea' && e.target.id != 'targetarea')
        $('#targetarea').hide();
})
上一篇:PayManager.txt
下一篇:spring bean 注入
网友评论