我正在尝试在表单上创建一个简单的启用/禁用单选按钮分组。我曾计划对启用和禁用 x 使用复选标记的图像。我希望未单击的元素变为灰色,以明确哪个被选中。帮助将不胜感激。
问问题
478 次
1 回答
3
尝试以下
查询
$(function() {
$('input:radio').each(function() {
$(this).hide();
$('<a class="radio-fx" href="#"><div class="radio"></div></a>').insertAfter(this);
});
$('.radio-fx').live('click',function(e) {
e.preventDefault();
var $check = $(this).prev('input');
$('.radio-fx div').attr('class','radio');
$(this).find('div').attr('class','radio-checked');
$check.attr('checked', true);
});
});
CSS
.radio {
background: url(radiobutton_no.png) no-repeat;
width: 16px;
height: 16px;
}
.radio-checked {
background: url(radiobutton_yes.png) no-repeat;
width: 16px;
height: 16px;
}
于 2012-08-17T17:37:15.920 回答