jQuery toggle div with radio buttons

后端 未结 3 1978
闹比i
闹比i 2020-12-30 05:16

Simple html & jQuery


3条回答
  •  春和景丽
    2020-12-30 05:40

    
    
    
    
    
    
    $(function() {
        $("[name=toggler]").click(function(){
                $('.toHide').hide();
                $("#blk-"+$(this).val()).show('slow');
        });
     });
    

    as in http://www.jsfiddle.net/eKFrW/

提交回复
热议问题