在 WordPress 如何获取 TinyMCE 编辑器的值

网站添加了投稿功能,表单验证总是少不了的,最基本的就是验证某个字段是否为空,文章内容当让还是用采用 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

以上是 在 WordPress 如何获取 TinyMCE 编辑器的值 的全部内容, 来源链接: utcz.com/p/232139.html

回到顶部