How jquery makes text boxes uneditable
This article mainly introduces the relevant knowledge of "how jquery makes the text box uneditable". The editor shows you the operation process through the actual case. The operation method is simple, fast and practical. I hope this article "jquery how to make the text box uneditable" can help you solve the problem.
In jquery, you can use the attr () method to set the disabled property to make the text box uneditable, and the disabled attribute can specify that the text area is disabled (not editable); the syntax is "$(" textarea "). Attr (" disabled "," disabled ");".
The operating environment of this tutorial: windows7 system, jquery1.10.2 version, Dell G3 computer.
In jquery, you can use the attr () method to set the disabled property to make the text box uneditable.
The disabled property is a Boolean property. The disabled attribute states that the text area should be disabled. Disabled text areas are not available and text is not selectable (cannot be copied).
You just need to set the disabled attribute on the text box textarea element using the attr () method.
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
That's all for "how jquery makes text boxes uneditable". Thank you for reading. If you want to know more about the industry, you can follow the industry information channel. The editor will update different knowledge points for you every day.