jquery实例
代码如下 |
复制代码 |
(function($) {
$.fn.extend( {
limiter: function(limit, elem) {
$(this).on("keyup focus", function() {
setCount(this, elem);
});
function setCount(src, elem) {
var chars = src.value.length;
if (chars > limit) {
src.value = src.value.substr(0, limit);
chars = limit;
}
elem.html( limit - chars );
}
setCount($(this)[0], elem);
}
});
})(jQuery);
//To setup the limiter, simply include a call similar to the one below:
var elem = $("#chars");
$("#text").limiter(100, elem);
|
js文本框textarea限制输入文字个数为200个
代码如下 |
复制代码 |
设计理念说明(200字以内)
您还可以输入 200 个文字
|
例2
代码如下 |
复制代码 |
文本框textarea限制输入文字个数的方法
|