Multiple Toggles Almost like Tabs JavaScript/ CSS

前端 未结 2 1996
臣服心动
臣服心动 2021-01-28 12:16

I want to create tabs that function like toggles, but instead only one toggle can be active at one time. The content of the tab also needs to be above the the tabs themselves. T

2条回答
  •  天涯浪人
    2021-01-28 12:57

    You can try something like this DEMO

    HTML Code





    jQuery

    $("#one").click(function() {
      $("#thumb").html("");
    });
    
    $("#two").click(function() {
      $("#thumb").html("");
     });
    
    $("#three").click(function() {
       $("#thumb").html("");
    });
    

提交回复
热议问题