$(function(){
$('input[type="radio"]').each(function(){
var e = $(this);
e.hide();
if(e.attr('checked')){
e.parent().attr('class','checked');
}else{
e.parent().attr('class','unchecked');
}
});
$('label').click(function(){
var e = $(this);
e.siblings().attr('class','unchecked');
e.attr('class','checked');
e.find('input').eq(0).attr('checked','checked');
});
});
参考样式表:
label.checked,label.unchecked { padding:3px 5px; display:inline-block}
label.checked { border:1px solid #F60; background:url(check.gif) no-repeat right bottom #FF9;}
label.unchecked { border:1px solid #AAA; background:#FFF}
素材图片:

最终效果:
留言