这是我当前的脚本
<script>
$().ready(function(){
$('.prettycheckbox').click(function () {
$('.prettycheckbox input').removeAttr('checked');
$('.prettycheckbox a').removeClass('checked');
$("a", this).addClass('checked');
$("input", this).addAttr("checked");
});
});
</script>
但它不能很好地工作,因为在链接中添加和删除类的部分效果很好,但是对于输入它不起作用。
如何使“选中”复选框如下所示:
<input class="payment_type" type="checkbox" value="1" name="payment_type" style="display: none;" checked="checked">
所有其他人看起来像这样?:
<input class="payment_type" type="checkbox" value="1" name="payment_type" style="display: none;">
怎么做?类似于使用 jquery 和复选框的输入单选类型?