$(".radio-btn").on("click", function () { var _this = $(this), block = _this.parent().parent(); block.find("input:radio").attr("checked", false); block.find(".radio-btn").removeClass("checkedRadio"); _this.addClass("checkedRadio"); _this.find("input:radio").attr("checked", true); }); $.fn.toggleCheckbox = function () { this.attr("checked", !this.attr("checked")); } $(".check-box").on("click", function () { $(this).find(":checkbox").toggleCheckbox(); $(this).toggleClass("checkedBox"); });/* 何问起 hovertree.com */
jQuery CSS3自定义美化Checkbox实现代码(2)
内容版权声明:除非注明,否则皆为本站原创文章。