最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Change label text on radio button selection with jQuery - Stack Overflow

programmeradmin2浏览0评论

I need to change the label text on a radio button when it is selected from "Set default" to "default" - How can this be done with jQuery? I presume that you would use the class radio-defaultas the selector but I don't know much about jQuery.

<div class="radio-default">
  <input type="radio" id="line-radio-1" name="line-radio">
  <label for="line-radio-1">Set default</label>           
</div>

<div class="radio-default">
  <input type="radio" id="line-radio-2" name="line-radio">
  <label for="line-radio-2">Set default</label>           
</div>

<div class="radio-default">
  <input type="radio" id="line-radio-3" name="line-radio">
  <label for="line-radio-3">Set default</label>           
</div>

I need to change the label text on a radio button when it is selected from "Set default" to "default" - How can this be done with jQuery? I presume that you would use the class radio-defaultas the selector but I don't know much about jQuery.

<div class="radio-default">
  <input type="radio" id="line-radio-1" name="line-radio">
  <label for="line-radio-1">Set default</label>           
</div>

<div class="radio-default">
  <input type="radio" id="line-radio-2" name="line-radio">
  <label for="line-radio-2">Set default</label>           
</div>

<div class="radio-default">
  <input type="radio" id="line-radio-3" name="line-radio">
  <label for="line-radio-3">Set default</label>           
</div>

Share Improve this question edited Jun 5, 2015 at 11:25 captainsac 2,4903 gold badges29 silver badges51 bronze badges asked Jun 5, 2015 at 10:56 SimonSimon 771 gold badge2 silver badges8 bronze badges
Add a ment  | 

6 Answers 6

Reset to default 4

Try

$("input[name='line-radio']").click(function() {
      $('.radio-default label').text('Set default');
      if(this.checked){
       $(this).next().text('default');
      }
 });

Fiddle

Use below script

 $( "input:radio" ).click(function() {
    $(':radio').each(function() {
        $("#"+this.id).next().text( "Set default" );
    });

    $("#"+this.id).next().text( "Default" );

});

Do this:-

 var $radioButtons = $('.radio-default input:radio[name="line-radio"]');
 $radioButtons.change(function(){
    if($(this).val() == 'on'){
       $radioButtons.siblings('label').text('Set default');
       $(this).siblings('label').text('default')
    }
});

Working JsFiddle here

You can add an on click hadler on the radio button

<input type="radio" id="line-radio-1" name="line-radio" onClick="yourFunc">

yourFunc: function(e){
    $(e).next('label').text('your text');
}

you may want to reset the text on the previoused button clicked, but this can help you:

$('.radio-default').on('click',function(){
    $(this).find('label').text("set");
})

Try this

$('input:radio').click(function() {
   $('label').text('Set default');
   $(this).next('label').html('Default');
  });

http://jsfiddle/ph2gvjcc/

发布评论

评论列表(0)

  1. 暂无评论