之前也介绍过一个类似效果的JQuery插件jQuery maxlength文本字数限制插件,不过这次的charcount部署更简单,而且有超出数字提示的功能. 简单的部署: 1.载入js: 复制代码 代码如下: 2.Html结构: 复制代码 代码如下: Default Usage Type your message Custom Usage Another message (limited to 30, warning at 10) 3.charCount插件设置: 复制代码 代码如下: <BR>$(document).ready(function(){ <BR>//default usage <BR>$("#message1").charCount(); <BR>//custom usage <BR>$("#message2").charCount({ <BR>allowed: 30, <BR>warning: 10, <BR>counterText: '剩余字数: ' <BR>}); <BR>}); <BR> 演示代码打包打包下载