我正在尝试添加“已检查”类,但由于某种原因没有任何反应。这是代码片段。 平台 - Wordpress。插件 - WC Fields Factory。 以下是代码的更广泛部分,因为您需要在此处启用更改。也许我错了。
this.doValidate = function( field ) {
if( field.attr("wccpf-type") !== "radio" && field.attr("wccpf-type") !== "checkbox" && field.attr("wccpf-type") !== "file" ) {
if(field.attr("wccpf-type") !== "select") {
if( this.doPatterns( field.attr("wccpf-pattern"), field.val() ) ) {
field.next().hide();
} else {
this.isValid = false;
field.next().show();
}
} else {
if (field.val() !== "" && field.val() !== "wccpf_none") {
field.next().hide();
} else {
this.isValid = false;
field.next().show();
}
}
} else if( field.attr("wccpf-type") === "radio" ) {
if( field.closest("ul").find("input[type=radio]").is(':checked') ) {
field.closest("ul").next().hide();
} else {
field.closest("ul").next().show();
this.isValid = false;
}
} else if( field.attr("wccpf-type") === "checkbox" ) {
var values = field.closest("ul").find("input[type=checkbox]:checked").map(function() {
return this.value;
}).get();
if( values.length === 0 ) {
field.closest("ul").next().show();
this.isValid = false;
} else {
field.closest("ul").next().hide();
}
} else if( field.attr("wccpf-type") === "file" ) {
if( field.val() == "" ) {
field.next().show();
this.isValid = false;
} else {
field.next().hide();
}
}
}