1

i have 3 radio buttons.what i need to do is that when one radio button is selected so i need to apply my css class name "line" on the text after it like

  <span> <input type="radio" name="group1" value="Milk">  Milk </span> 

我需要在 Milk 上应用我的课程,并且当用户选择其他单选按钮时,相同的课程适用于其他单选按钮文本,但从前一个单选按钮文本中删除课程。这就是我尝试过的

<style type="text/css">
    .line{
        text-decoration: line-through;
         }
</style>

<script type="text/javascript">
$(document).ready(function(){
   $("input[type='radio']").change(function(){
      if($(this).is(':checked'))
          //i wana do this
           $(this).addClass('line');
         //if another is selected so do this
           $(this).removeClass('line');
      });
   });

 <div>
  <span> <input type="radio" name="group1" value="Milk">  Milk </span> </br>
  <span> <input type="radio" name="group1" value="Butter"> Butter </span> </br>
  <span> <input type="radio" name="group1" value="Cheese"> Cheese </span> </br>
  <hr>
</div>
4

2 回答 2

4

由于您需要将类添加到span,您可以使用从单选按钮parent访问。span要从其他span元素中删除该类,只需将其从所有有问题的类中删除,然后再将该类添加到span刚刚选择的类中:

$("input[type='radio']").change(function() {
   if(this.checked) {
      $('span.line').removeClass('line');
      $(this).parent().addClass('line');
   }
});

这是一个工作示例

请注意使用this.checked代替您拥有的 jQuery 版本。在可能的情况下使用本机 DOM 属性要快得多。

于 2012-06-14T08:36:53.660 回答
3
$("input[type='radio']").change(function() {
    console.log(this.checked)
    if (this.checked) {
        // remove previously added line class
        $('span.line').removeClass('line');
        // you should add class to span, because text is
        // within span tag, not in input
        $(this).parent().addClass('line');
    }
});

工作样本

于 2012-06-14T08:35:22.213 回答