我可以在jQuery 3.3.1中显示和隐藏单个字段集行,如下所示:
$("div.form-row.field-construction_start_date").show();
$("div.form-row.field-construction_start_date").hide();
但是,假设我要禁用单个字段集行和该单行中的所有控件,如下所示:
$("div.form-row.field-construction_start_date").prop("disabled",true);
它不起作用。可能有人对我做错了什么有洞察力吗?
答案 0 :(得分:0)
$("div.form-row.field-construction_start_date :input").prop("disabled",true);