HTML Input Disabled Attribute - W3Schools
Có thể bạn quan tâm
HTML <input> tag
Example
An HTML form with a disabled input field:
<form action="/action_page.php"> <label for="fname">First name:</label> <input type="text" id="fname" name="fname"><br><br> <label for="lname">Last name:</label> <input type="text" id="lname" name="lname" disabled><br><br> <input type="submit" value="Submit"> </form> Try it Yourself »Definition and Usage
The disabled attribute is a boolean attribute.
When present, it specifies that the <input> element should be disabled.
A disabled input element is unusable and un-clickable.
The disabled attribute can be set to keep a user from using the <input> element until some other condition has been met (like selecting a checkbox, etc.). Then, a JavaScript could remove the disabled value, and make the <input> element usable.
Tip: Disabled <input> elements in a form will not be submitted!
Browser Support
The numbers in the table specify the first browser version that fully supports the attribute.
| Attribute | |||||
|---|---|---|---|---|---|
| disabled | Yes | Yes | Yes | Yes | Yes |
Syntax
<input disabled> ❮ HTML <input> tag ★ +1 Sign in to track progressTừ khóa » Html Form Block Input
-
HTML Input Readonly Attribute - W3Schools
-
How To Disable An Input Type=text? - Javascript - Stack Overflow
-
HTML Attribute: Disabled - HTML: HyperText Markup Language | MDN
-
: The Input (Form Input) Element - HTML - MDN Web Docs
-
Which Attribute Is Used To Disabled The Specific Input Field In HTML ...
-
JavaScript - Input Field Enable And Disable - C# Corner
-
How To Disable All Input Controls Inside A Form Using JQuery
-
Disable HTML Form Input Autocomplete And Autofill - GitHub Gist
-
HTML And CSS Tutorial: The Intermediates
-
Disable Input Html Form Code Example - Code Grepper
-
How To Block Input Text In Html Code Example
-
Forms - Bootstrap
-
How To Disable A Form Field To Prevent User Input - WPForms
-
How To Disable The Browser Autocomplete And Autofill On HTML ...