标签:
$("textarea").keyup(function(){
//console.log($(this).val().length);
var L=$(this).val().length;
if(L>100){//100为设定的字数
$(this).val($(this).val().substring(0,100));
}
});
标签:
原文地址:http://www.cnblogs.com/wqing/p/4201961.html