不同的输出与tinymce setcontent,应用原始格式或默认

时间:2015-09-01 09:04:21

标签: javascript jquery html format tinymce

为什么我们在tinymce上有以下不同的输出?

var foo = '<html><head></head><body><p></p>xxxxx';

// generates some empty lines and the content
tinymce.activeEditor.setContent(foo);

// the content starts from the top, without any lines
tinymce.activeEditor.setContent(foo, {format : 'raw'});

// generates the same (without any empty line, like raw format)
$(tinymce.activeEditor.getBody()).html(foo);

您可能会在http://jsfiddle.net/ht1dpcdu/

上看到一个有效的例子

0 个答案:

没有答案