我正在创建一个表单,我希望某些部分显示为灰色并禁用,直到该人为每个部分回答“是”。
$(document).ready(function() {
$('#submit').prop('disabled', true); // disabled by default
$('#checkbox').click(function() {
// change on checkbox click
$('#submit').prop('disabled', !$('#checkbox').prop('checked'));
});
});
答案 0 :(得分:0)
put this div in the fieldset(of your example):
<div style="position:absolute;width:90%;height:100%;background-color:rgba(200,200,200,0.5)">
</div>