Home > Web Front-end > JS Tutorial > body text

How to set the button to be unavailable in jquery

coldplay.xixi
Release: 2020-11-17 11:46:41
Original
3981 people have browsed it

How to set the button to be unavailable in jquery: first create a button using the button tag in the p tag, and set its id to mybut; then bind the onclick click event to the p tag text; finally use [att() ] method sets the disabled attribute of the button to true to make the button unclickable.

How to set the button to be unavailable in jquery

Recommended: "jquery video tutorial"

How to set the jquery button to be unavailable:

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

How to set the button to be unavailable in 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 set the button to be unavailable in 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 set the button to be unavailable in 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 set the button to be unavailable in 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 button The disabled attribute is set to true to make the button unclickable.

How to set the button to be unavailable in jquery

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

How to set the button to be unavailable in jquery

Related free learning recommendations: JavaScript (video)

The above is the detailed content of How to set the button to be unavailable in jquery. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!