e.stopPropagation()阻止事件冒泡
$(".xlBtn").on("click",function(e){
$(".xlBox").show()
e.stopPropagation();
$("body").one("click",function(e){
$(".xlBox").hide()
});
});
e.stopPropagation()阻止事件冒泡
$(".xlBtn").on("click",function(e){
$(".xlBox").show()
e.stopPropagation();
$("body").one("click",function(e){
$(".xlBox").hide()
});
});