首页 > 代码库 > jquery toggle 替换的实现

jquery toggle 替换的实现

$(‘#example‘).click(function(){$("#exampleBox").toggle();})改为$(‘#example‘).click(function(){    if($("#exampleBox").is(":visible")){        $("#exampleBox").hide();        do stuff    }else{        $("#exampleBox").show();        do stuff    }})$("#example").hover(function(){$("#exampleBox").toggle(); })改为$("#example").hover(function(){$("#exampleBox").show();},function(){$("#exampleBox").hide();});岂不是更加清晰明了

  

jquery toggle 替换的实现