想要实现在达到最大字数的时候,就禁止再继续输入了或者超出字数限制后,不能完整保存内容。
查阅很多资料,博主总结解决方法如下:
第一步:在/include/ueditor/ueditor.all.js中找到这两行注释掉
countDom.innerHTML = errMsg;
editor.fireEvent(“wordcountoverflow”)
第二步:在注释点的两行下面写上这三行就搞定了
var content = editor.getContentTxt();
editor.setContent(content.substring(0,max));
editor.focus(true);
本站部分文章搜集整理于互联网或者网友提供,如有侵权请联系站长
如若转载,请注明出处:https://htmlbk.com/dedecms/86.html
温馨提示:该文档最后一次修改时间为2019-03-16 17:42:50,请注意相关的内容是否还可用!