btn
$('body').click(function(e) { var target = $(e.target); // 如果#overlay或者#btn下面还有子元素,可使用 // !target.is('#btn *') if(target.is('.dropbutton')){ $('.droplist').show(); }else{ $('.droplist').hide(); } }); 原:https://www.jianshu.com/p/2a08cb1d7dfe
本文共 348 字,大约阅读时间需要 1 分钟。
btn
$('body').click(function(e) { var target = $(e.target); // 如果#overlay或者#btn下面还有子元素,可使用 // !target.is('#btn *') if(target.is('.dropbutton')){ $('.droplist').show(); }else{ $('.droplist').hide(); } }); 原:https://www.jianshu.com/p/2a08cb1d7dfe
转载于:https://www.cnblogs.com/opcec/p/8303090.html