例子:
[color=red]PS:这样可以使用$("#aaa").customInputCheck()调用[/color]
$.fn.extend({
customInputCheck: function(o) {
$(this).get(0).checked = o;
if (o) {
$(this).next().addClass("checked");
} else {
$(this).next().removeClass("checked");
}
}
});
[color=red]PS:这样可以使用$("#aaa").customInputCheck()调用[/color]