Home  >  Article  >  Web Front-end  >  How to implement invalid button in html

How to implement invalid button in html

藏色散人
藏色散人Original
2021-06-08 10:23:472089browse

How to implement the invalid button: first create an HTML sample file; then create the button through the button tag; finally set the disabled attribute to disable the button.

How to implement invalid button in html

The operating environment of this article: windows7 system, HTML5 version, DELL G3 computer

How to implement the html invalid button?

The disabled attribute of the HTML bb9345e55eb71822850ff156dfde57c8 tag

Definition and usage

The disabled attribute specifies a disabled button.

Disabled buttons are neither available nor clickable.

You can set the disabled attribute to restore the user's use of the button until certain conditions are met (such as selecting a checkbox). You can then use JavaScript to clear the disabled attribute so that the text area becomes available.

Example

A disabled button:

<button type="button" 
disabled="disabled">Click Me!</button>

Syntax

<button disabled="value">

Attribute value

Value

disabled specifies that the button should be disabled.

Recommended study: "HTML Video Tutorial"

The above is the detailed content of How to implement invalid button in html. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to hide text in htmlNext article:How to hide text in html