我有一个隐藏/显示内容区域的单选按钮,但如何检查加载时选择的值?
这是我现在正在使用的代码
$(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();
}
});
});
答案 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