The textarea text in the default state does have limited functionality, and it doesn't even support common HTML code, so in most cases we enhance the operability of the textarea by other controls or other means. Here are 7 excellent jquery plug-ins that are related to improving textarea operating performance.
1,mark It up
Mark It up is a powerful jquery text-editing plugin that allows you to edit the TextArea text box on your page in the usual html,bbcode,textile and wiki plus, and it's very simple to use , the calling code is as follows:
$ ("#html"). Markitup (myhtmlsettings); |
Plugin URL:jaysalvat.com
Plugin Download:markitup pack 1.1.5
2,retype
Retype is a very simple text editor that can support multiple language keyboard switching, and can achieve powerful multilingual soft keyboard input without requiring users to install different language input methods.
Plugin URL:myyn.org
Plugin Download:jquery-retype
3,modal Preview
Modal Preview is a jquery text box content preview plug-in that supports preview of effects such as HTML, animation, and transparency, with the calling code as follows:
$ (<code> "form textarea" </code><code>) Modalpreview (options);</code> |
Plugin URL: devkick.com
Plugin Download:modalpreview
4,text Input Limiter
The text input limiter is a jquery plugin that restricts the number of words entered in the TextBox, while supporting the word count function.
Plugin Download: textlimit.js
5,htmlbox
Htmlbox is a text-editing enhancement that is similar to Mark's It up feature, with more detailed visual operations such as HTML.
Plugin URL: remiya.com
Plugin Download: htmlbox 2.8
6,resize
Resize is a jquery plugin that is used to resize the text box in the page, calling the code as follows:
$ ("Textarea.resizable:not (. processed)"). Textarearesizer (); |
Plugin URL: itsavesyou.com
Plugin Download: textarearesize
7,typewatch
Typewatch is a jquery plug-in that users monitor whether the user's input to the content of the current text area is complete, and the calling code is as follows:
var options = {
callback:function () {alert ("changed search text");},
wait:750,
highlight:true,
Enterkey:true,
}
$ ("#search") .<strong>typewatch</strong> (options); |
Plugin URL: dennydotnet.com
Plugin Download: typewatch.js