我正在使用Javascript函数来获取服务器上托管的HTML文件的内容,然后将该内容添加到TinyMCE编辑器中.
这是功能:
function LoadTemplate(url) {
$.post(url, function (data) {
// Get the editor instance that we want to interact with.
var ed = tinyMCE.get('html_editor');
;
// Insert the response into TinyMCE editor
ed.setContent(data, {format : 'raw'});
// Hide The Templates Div
HideTemplates();
}, "text");
}
用户选择文件后,单击“加载模板”,将HTML文件毫无问题地插入TinyMCE编辑器,但是单击“提交”后,我在数据库中找到了文档的头,TinyMCE删除了样式标签中的CSS .
我添加了TinyMCE常规选项:
element_format : "html",
verify_html : false,
但我仍然遇到相同的错误
解决方法:
默认情况下,TinyMCE仅对文档的< body>中包含的页面内容感兴趣.部分.如果您想让TinyMCE编辑文档的每个部分,尤其是< head>部分,则需要整页插件.
http://www.tinymce.com/wiki.php/Plugin:fullpage