HTML DOM Input Submit Disabled Property - W3Schools
Có thể bạn quan tâm
Input Submit disabled Property
❮ Input Submit Object
Example
Disable a Submit button:
document.getElementById("mySubmit").disabled = true; Try it Yourself »Description
The disabled property sets or returns whether a submit button should be disabled, or not.
A disabled element is unusable and un-clickable. Disabled elements are usually rendered in gray by default in browsers.
Browser Support
| Property | |||||
|---|---|---|---|---|---|
| disabled | Yes | Yes | Yes | Yes | Yes |
Syntax
Return the disabled property:
submitObject.disabledSet the disabled property:
submitObject.disabled = true|falseProperty Values
| Value | Description |
|---|---|
| true|false | Specifies whether a submit button should be disabled or not
|
Technical Details
| Return Value: | A Boolean, returns true if the submit button is disabled, otherwise it returns false |
|---|
More Examples
Example
Find out if a Submit button is disabled or not:
var x = document.getElementById("mySubmit").disabled; Try it Yourself »Related Pages
HTML reference: HTML <input> disabled attribute
❮ Input Submit Object ★ +1 Sign in to track progressTừ khóa » Html Form Block Submit
-
How To Prevent Form From Being Submitted? - Stack Overflow
-
Prevent HTML
-
Prevent Form Submission JavaScript | Delft Stack
-
Html Form Prevent Submit Code Example - Code Grepper
-
Form Onsubmit Prevent Default Code Example - Code Grepper
-
2 Methods To Prevent Form From Submission - HTML & Javascript
-
How To Prevent Buttons From Causing A Form To Submit With HTML
-
HTMLFormElement: Submit Event - Web APIs | MDN
-
How To Disable The Submit Button While A Form Is Submitting In Webflow
-
PreventDefault() Event Method - W3Schools
-
How To Stop A Form Submit Action Using JQuery ? - GeeksforGeeks
-
JavaScript Stop Form Submit - Daily Dev Tips
-
Javascript: Prevent Double Form Submission - The Art Of Web
-
Html Form Prevent Submit When Hit Enter On Specific Input