弹出框点击消失
2017-03-07 本文已影响19人
kate2020
$('td.showModal').on('click',function(e){
e.stopPropagation();
$(document).on('click',function(e){
obj = $(e.srcElement || e.target);
if(!$(obj).is('.am-modal *')){
close();
}
})