$('.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;
});
用户体验欠佳,求赐教。。

相关文章:

  • 2022-12-23
  • 2021-12-05
  • 2022-12-23
  • 2022-12-23
  • 2021-12-18
  • 2021-06-10
猜你喜欢
  • 2022-12-23
  • 2021-11-02
  • 2021-12-26
  • 2021-11-06
  • 2022-12-23
  • 2022-12-23
  • 2021-12-23
相关资源
相似解决方案