ในการโพสต์ค่าจากอินพุตที่ถูกปิดใช้งานนอกเหนือจากอินพุตที่เปิดใช้งานคุณสามารถเปิดใช้งานอินพุตทั้งหมดของฟอร์มอีกครั้งในขณะที่กำลังส่ง
<form onsubmit="this.querySelectorAll('input').forEach(i => i.disabled = false)">
<!-- Re-enable all input elements on submit so they are all posted,
even if currently disabled. -->
<!-- form content with input elements -->
</form>
ถ้าคุณชอบ jQuery:
<form onsubmit="$(this).find('input').prop('disabled', false)">
<!-- Re-enable all input elements on submit so they are all posted,
even if currently disabled. -->
<!-- form content with input elements -->
</form>
สำหรับ ASP.NET MVC C # Razor คุณเพิ่มตัวจัดการการส่งเช่นนี้:
using (Html.BeginForm("ActionName", "ControllerName", FormMethod.Post,
// Re-enable all input elements on submit so they are all posted, even if currently disabled.
new { onsubmit = "this.querySelectorAll('input').forEach(i => i.disabled = false)" } ))
{
<!-- form content with input elements -->
}