限制textarea文本框字数的两种方法


  1. //不能直接在css样式表中添加maxlength
  2. //在js中引入id为msg的textarea。
    msg.setAttribute(“maxlength”,140);
原文地址:https://www.cnblogs.com/jiandanshishu/p/12953309.html