-2
<input type="text" id="textbox">
<input type="radio" id="radio1" name="on">
<input type="radio" id="radio2" name="off">

只有在选择#Radio1(第一次Pageload)时,才需要显示#TextBox。或者在第一页加载时选择#radio2,并且用户单击#radio2,文本框也应该显示。

任何建议如何做到这一点?

4

3 回答 3

1

如果我得到你想要的正确:

$(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.
    });
});
于 2012-05-12T19:12:53.753 回答
1

演示

if( $('input#radio1').is(':checked') ){
  $('#textbox').show();
}

$('input#radio1, input#radio2').on('change',function(){
   $('#textbox').show();
});
于 2012-05-12T19:25:03.887 回答
0
$(function(){
    $('#radio1').on('click', function() {
      if(this.checked) {
         $('#textbox').show();
      } else $('#textbox').hide();
    }).click();  // firing a initial click

    $('#radio2').on('click', function() {
         $('#textbox').show();
    });
});
于 2012-05-12T19:21:48.650 回答