以编程方式从WYSIHTML5编辑器中检索内容 [英] Programmatically retrieve content from WYSIHTML5 editor

查看:118
本文介绍了以编程方式从WYSIHTML5编辑器中检索内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何以编程方式从 WYSIHTML5 编辑器中检索内容?
假设编辑器被实例化为:

How do I programmatically retrieve content from a WYSIHTML5 editor? Suppose the editor is instantiated as this:

var editor = new wysihtml5.Editor
(
   $(this.el).find('textarea').get(0),
   {
      toolbar:      "toolbar",
      parserRules:  wysihtml5ParserRules
   }
);

我想在模糊事件

editor.on
(
   "blur",
   function()
   {
      //what here?
   }
);


推荐答案

使用API​​
要好得多 editor.getValue()

(@ dalen在上面的评论中提到了这一点)

(@dalen mentioned this in the comment above)

这篇关于以编程方式从WYSIHTML5编辑器中检索内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆