<input type="text" id="textbox">
<input type="radio" id="radio1" name="on">
<input type="radio" id="radio2" name="off">
只有在选择#Radio1(第一次Pageload)时,才需要显示#TextBox。或者在第一页加载时选择#radio2,并且用户单击#radio2,文本框也应该显示。
任何建议如何做到这一点?
<input type="text" id="textbox">
<input type="radio" id="radio1" name="on">
<input type="radio" id="radio2" name="off">
只有在选择#Radio1(第一次Pageload)时,才需要显示#TextBox。或者在第一页加载时选择#radio2,并且用户单击#radio2,文本框也应该显示。
任何建议如何做到这一点?
如果我得到你想要的正确:
$(function(){
if ($('#radio1').is(':checked')){ // if the radio1 is checked when the page
alert($('#textbox').val()); // was loaded, display textbox value
}
$('#radio2').click(function(){ // When the radio2 is clicked
alert($('#textbox').val()); // show textbox value.
});
});
if( $('input#radio1').is(':checked') ){
$('#textbox').show();
}
$('input#radio1, input#radio2').on('change',function(){
$('#textbox').show();
});
$(function(){
$('#radio1').on('click', function() {
if(this.checked) {
$('#textbox').show();
} else $('#textbox').hide();
}).click(); // firing a initial click
$('#radio2').on('click', function() {
$('#textbox').show();
});
});