我需要在php条件为真时禁用表单中的所有输入。我试过这样的东西,但它不起作用。如果有人可以帮助我:)
<?php if(1==1){?>
<script type="text/javascript">
$(document).ready(function() {
$('#formEtape1').find('input, textarea, button, select').prop('disabled',true);
});
</script>
<?php } ?>