我实现了我的自定义重力形式,在单击一个复选框后,需要在必填状态上设置一个字段。
jQuery(document).ready(function ($) {
$('#choice_5_8_1').change(function () {
if ($(this).is(':checked')) {
jQuery("#field_5_9").required(false).change();
}
});
});
可以在验证所有数据和提交表格之前进行吗?我尝试使用类似的方法,但是它不起作用...
答案 0 :(得分:1)
这是您的操作方式:
$(document).ready(function() {
$('#choice_5_8_1').on("change", (function () {
if ($(this).prop('checked')) {
$("$field_5_9").attr('required', ($(this).attr('required') == "required" ? "" : "required"));
}
});
});