$('.addLabel').on('click', function () {
setTimeout(function(){
if(hoverflag==0){
$(".labelHide").hide()
}
return;
},2000);
$(".labelHide").show();
$(".labelHide").hover(function(){
hoverflag=1;
$(".labelHide").show()
},function(){
hoverflag=0;
setTimeout(function(){$(".labelHide").hide()},2000)
});
return false;
});
用户体验欠佳,求赐教。。