This jQuery plugin will allow you to limit input into form fields. It can display a message as the user types to let them know how many characters they have remaining.
改动后文件为: jquery.inputlimiter2.js(支持中文字符输入限制)
<input tupe="text" name="name" id="ipt1" />
$(function() {
$('#ipt1').inputlimiter({
limit: 10
});
});
其他配置项请参照原文档。