我们可以对通过 CKeditor 输入的字符进行限制吗
我喜欢对使用 ckeditor 输入的字符进行限制。我使用javascript来限制文本区域的字符,但是当使用ckeditor时我无法限制字符。我只想使用ckeditor输入3500个单词,然后弹出窗口应该说我已经达到了最大限制,有什么方法可以做这???如果 ckeditor 不支持此功能,请有人推荐其他编辑器。
I like to put a limit on character entered using ckeditor. I used javascript to limit characters for textarea, But i am unable to limit character when ckeditor is used.i want only 3500 words to be entered using ckeditor afterwards a pop up should say i have reached the maximum limit,Is there any way of doing this??? If ckeditor does'nt support this functionality , can someone refer any other editor please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以简单地使用 substr() 截断返回到 PHP 脚本的字符串。如果您需要截断字数,则 http://www.lullabot.com/articles/trim-a-string-to-a-given-word-count 可能是一个很好的起点(尽管它可以进行一些改进)。
在客户端执行此操作需要编辑器的 JavaScript 插件。如果是这种情况,那么这实际上不是一个 PHP 问题,而是一个 javascript 问题。
You can simply truncate the string returned to the PHP script with substr (). If you need to truncate to a word count, then http://www.lullabot.com/articles/trim-a-string-to-a-given-word-count might be a good starting point (though it could use some refinement).
Doing it client-side would require a javascript plugin for the editor. If this is the case then this isn't really a PHP question but a javascript question.