点击其他位置,让目标位置隐藏
$(document).click(function(e){
var _con = $('.tardiv'); // 设置目标区域
if(!_con.is(e.target) && _con.has(e.target).length === 0){
$('.tardiv').remove();
}
});
$(document).click(function(e){
var _con = $('.tardiv'); // 设置目标区域
if(!_con.is(e.target) && _con.has(e.target).length === 0){
$('.tardiv').remove();
}
});