The value cannot be obtained after submission in the form form .
Change disabled="disabled" to readonly = "readonly"
Follow W3C specifications: http://www.w3.org/TR/REC-html40/interact/forms.html#h- 17.12
Input set to disabled will have the following restrictions:
Cannot receive focus
Will be skipped when using the tab key
May not be successful
Set to readonly The input will have the following restrictions:
It can receive focus but cannot be modified
It can use the tab key to navigate
It may be successful
Only successful form elements are valid data, that is, Submission is possible. The value attribute of disabled and readonly text input boxes can only be modified through scripts.