当在引导程序中选择单选按钮时,我试图隐藏和显示单个 div。我无法让它工作。这是我当前的代码:http: //jsfiddle.net/pLqmS/9/
<div class="row demo-row">
<div class="span7">
<div id="opt1" class="option">
<h5>Generation</h5>
</div>
<div id="opt2" class="option" style="display: none;">
<h5>Test</h5>
</div>
<div id="opt3" class="option" style="display: none;">
<h5>Test</h5>
</div>
<div id="opt4" class="option" style="display: none;">
<h5>Test</h5>
</div>
</div>
这是我的脚本:
$('.phone-choice').click(function () {
$('.option').each(function () {
if ($(this).is(':visible')) {
$(this).stop().slideUp('slow');
}
});
var id = $(this).val();
$('#opt' + id).stop().slideDown('slow');
});
有任何想法吗?