Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How jquery makes text boxes uneditable

2025-04-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

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.

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.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report