展示&隐藏基于广播的内容

时间:2015-08-20 14:24:01

标签: jquery html5 css3

我有一个隐藏/显示内容区域的单选按钮,但如何检查加载时选择的值?

这是我现在正在使用的代码

$(document).ready(function(){

    $("#CONTENT_DIV").hide();

    $("input:radio[name='SHOW_HIDE_CONTENT']").change(function(){  
        if(this.value == 'y' && this.checked){
          $("#CONTENT_DIV").show();
        }else{
          $("#CONTENT_DIV").hide();
        }
    });

});

1 个答案:

答案 0 :(得分:1)

您可以在附加事件后简单地触发更改事件:

$("input:radio[name='SHOW_HIDE_CONTENT']").change(function(){  
    if(this.value == 'y' && this.checked){
      $("#CONTENT_DIV").show();
    }else{
      $("#CONTENT_DIV").hide();
    }
}).change(); //trigger change to see changes