Using JQuery how to show and hide different div's onClick event

前端 未结 12 738
死守一世寂寞
死守一世寂寞 2021-01-03 03:34

I would like to show a div based on the Onclick event of an link.

First Click - Show div1
Second Click - Hide remaining div\'s and Show div2
Third Click

12条回答
  •  醉话见心
    2021-01-03 04:01

    A simple way would be to introduce a variable that tracked clicks, so something like this:

    var tracker = 0;    
    $(document).ready(function() {
        $("#toggle_value").click(function(){
           if(tracker == 0)
           {
              $("#div1").show("fast");
           }else if(tracker ==1)
    
           etc etc
    
           tracker ++;
    
        });
    });
    

提交回复
热议问题