是否可以在交易期间禁用所有 HTML-表单元素 运行

Is it possible to disabel all HTML-Elements of a Form during a transaction is running

例如按钮..

<body disabled>

无效

谢谢

我会使用 javascript:

<script language='Javascript'>
document.getElementById("this_is_the_submitbutton").disabled = true;
</script>

您的提交按钮需要有 id='this_is_the_submitbutton'

以下脚本将 select 您的 form 元素的所有后代。您可以使用任何 selector 来获取所需的元素集并应用此脚本来禁用它们。

<script >
var form_elem=document.querySelectorAll("form *");
for(var i of form_elem){
i.setAttribute("disabled", true);
}
</script>