In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly explains the "jquery how to make the text box prohibit input", the text explains the content is simple and clear, easy to learn and understand, the following please follow the editor's ideas slowly in depth, together to study and learn "jquery how to make the text box prohibit input" bar!
Prohibited text box input methods: 1, the use of "$(" textarea "). Attr (" disabled "," disabled ");" statement prohibition; 2, the use of "$(" textarea "). Attr (" readonly "," readonly ");" statement prohibition.
The operating environment of this tutorial: windows7 system, jquery1.10.2 version, Dell G3 computer.
If you want the text box to disable input, you can set the disabled or readonly property to the text box so that it is not editable or read-only.
The method of letting the text box prohibit input by jquery
Method 1: use the attr () method to set the disabled property
Syntax:
$("textarea") .attr ("disabled", "disabled"); $("textarea") .attr ("disabled", "true")
Example:
$(document) .ready (function () {$("button") .click (function () {$("textarea") .attr ("disabled", "disabled"); / / $("textarea") .attr ("disabled", "true") );})
Make textarea uneditable
Method 2: use the attr () method to set the readonly property
Syntax:
$("textarea") .attr ("readonly", "readonly"); $("textarea") .attr ("readonly", "true")
Example:
$(document) .ready (function () {$("button") .click (function () {/ / $("textarea") .attr ("readonly", "readonly"); $("textarea") .attr ("readonly", "true") );})
Let textarea disable input
Thank you for your reading, the above is the content of "jquery how to make the text box prohibit input". After the study of this article, I believe you have a deeper understanding of how jquery makes the text box prohibit input, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.