如何以编程方式从WYSIHTML5编辑器中检索内容?
假设编辑器是这样实例化的:

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

我想获取有关blur事件的编辑器的内容
editor.on
(
   "blur",
   function()
   {
      //what here?
   }
);

最佳答案

最好使用APIeditor.getValue()
(@dalen在上面的评论中提到了这一点)

关于javascript - 从WYSIHTML5编辑器以编程方式检索内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10986054/

10-12 03:15