Home  >  Article  >  Web Front-end  >  How to make button unavailable with jquery

How to make button unavailable with jquery

coldplay.xixi
coldplay.xixiOriginal
2020-12-11 15:10:526748browse

Jquery method to make a button unavailable: First create a button using the button tag; then obtain the button button object through the id, and use the [att()] method to set the disabled attribute of the button to true to make the button unclickable .

How to make button unavailable with jquery

The operating environment of this tutorial: windows7 system, jquery3.2.1 version, thinkpad t480 computer.

How to make the button unavailable in jquery:

1. Create a new html file, named test.html, to explain how to set the button to be unclickable in jquery.

How to make button unavailable with jquery

2. In the test.html file, in the p tag, use the button tag to create a button and set its id to mybut.

How to make button unavailable with jquery

3. In the test.html file, use the p tag to create a line of text with the text "Clicking the setting button is not available".

How to make button unavailable with jquery

4. In the test.html file, bind the onclick event to the p tag text. When the text is clicked, execute the setBut function.

How to make button unavailable with jquery

5. In the js tag, create the setBut function. Within the function, obtain the button button object through the id, and use the att() method to set the disabled attribute of the button to true. , to make the button unclickable.

How to make button unavailable with jquery

#6. Open the test.html file in the browser, click on the text to see the effect.

How to make button unavailable with jquery

Related free learning recommendations: javascript(Video)

The above is the detailed content of How to make button unavailable with jquery. 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