我必须额外的样式单选按钮,所以我创建了跨度和添加类,但是在单击另一个单选标签后我无法删除 aktiv 类这是我的代码:
$('.attribute_wrapper div label').click(function(){
var selectedLabel = $(this).attr('id');
if($('#' + selectedLabel).data('clicked', true)) {
$('.attribute_wrapper div #' + selectedLabel + ' span').addClass('radioclicked');
} else {
$('.attribute_wrapper div label span').removeClass('radioclicked');
}
});
我不明白,我的else语句有什么问题?
标记:
<div class="attribute_wrapper">
<div class="attribute_multiselect_single">
<label id="lblID1">
<span class="radiobutton"> </span>
<input type="radio" checked="" value="1384" name="color_white" id="color_white103" required="0">White
</label>
</div>
</div>