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

前端 未结 12 641
死守一世寂寞
死守一世寂寞 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:09

    I'll try my shot.


    EDIT: After second though, to avoid global variable use it's better to do the following

    $(document).ready(function() {
            $("#toggle_value").click((function(){
            var counter = 0;
            return function()
            {
               $("#div" + counter).hide("fast");
               counter = (counter % 3) + 1;
               $("#div" + counter).show("fast");
            }
            })());
    });
    

提交回复
热议问题