$('td.showModal').on('click',function(e){
e.stopPropagation();
$(document).on('click',function(e){
obj = $(e.srcElement || e.target);
if(!$(obj).is('.am-modal *')){
close();
}
})
网友评论