【发布时间】:2015-08-13 19:13:24
【问题描述】:
如果选中单选,我需要一个显示相邻的 .help-block 的表单,但如果未选中相应的单选,则隐藏 .help-block。我的 javascript 一定是错误的,因为单击任何收音机都会显示所有 .help-block 跨度。
http://jsfiddle.net/utcwebdev/cwryu9ac/2/
$(document).ready(function() {
$('input[type="radio"]').next(".help-block").addClass('hidden');
$('input[type="radio"]').change(function() {
var $this = $(this);
console.log($this);
if ($this.is(":checked")) {
$('input[type="radio"]').next(".help-block").removeClass('hidden');
} else {
$('input[type="radio"]').next(".help-block").addClass('hidden');
}
});
});
<link href="//www.utc.edu/_resources/css/kickstrap.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<div class="control-group">
<label class="control-label" for="Q3"><strong>3. Are you comfortable creating, saving, and attaching files on your computer? </strong>
</label>
<div class="controls">
<label class="radio">
<input type="radio" name="Q3" value="2">Yes. I am comfortable creating, saving, and attaching files on my computer.
<span class="help-block">Very good. These are some of the technical skills you’ll need in an online course.</span>
</label>
<label class="radio">
<input type="radio" name="Q3" value="0">No. I’m not comfortable creating, saving, and/or attaching files on my computer.
<span class="help-block">You may need to seek assistance in acquiring these skills before taking an online class. </span>
</label>
</div>
<!--/controls-->
</div>
<!--/control-group-->
<div class="control-group">
<label class="control-label" for="Q4"><strong>4. Do you stay on track without direct supervision, or do you work best when someone is there to supervise you and help keep you focused? </strong>
</label>
<div class="controls">
<label class="radio">
<input type="radio" name="Q4" value="2">Yes. I am self-motivated.
<span class="help-block">Being self-disciplined and organized are traits you’ll need to succeed in online learning.</span>
</label>
<label class="radio">
<input type="radio" name="Q4" value="0">No. I need supervision
<span class="help-block">In an online class, you’ll need to rely on yourself to keep track of assignments and due dates.</span>
</label>
<label class="radio">
<input type="radio" name="Q4" value="1">Sometimes. At times I procrastinate.
<span class="help-block">This could be a problem in an online course because it is your responsibility to keep track of assignments and due dates. You’ll need to stay focused in order to succeed.</span>
</label>
</div>
<!--/controls-->
</div>
<!--/control-group-->
【问题讨论】:
标签: jquery forms twitter-bootstrap