在 WordPress 如何获取 TinyMCE 编辑器的值
网站添加了投稿功能,表单验证总是少不了的,最基本的就是验证某个字段是否为空,文章内容当让还是用采用 WordPress 默认的编辑器 TinyMCE ,但是如何获取里面的值呢?
获取 TinyMCE 编辑器的值用普通的 JavaScript 或者 jQuery 都不能取值的,只能用编辑器自带的方法,如果当前页面只有一个编辑器的话,使用下面的代码即可获取
tinyMCE.activeEditor.getContent()
另外还有以下的方法,获取不用的内容:
// Get the HTML contents of the currently active editor tinyMCE.activeEditor.getContent(); // Get the raw contents of the currently active editor tinyMCE.activeEditor.getContent({format : 'raw'}); // Get content of a specific editor: tinyMCE.get('content id').getContent()
参考 Tinymce API https://www.wenjiangs.com/docs/tinymce
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论