tinyMCE编辑XML标签的问题

时间:2012-11-08 14:33:30

标签: xml tinymce editing

我正在尝试使用tinyMCE编辑和保存包含XML标记的一些文本。 当我尝试保存文本时,一些信息会丢失。

例如,如果我尝试相同的文字是 名字 在第一次保存时保存正确,如果我尝试编辑标签将丢失。 只有当标签放在句子的末尾时才会发生这种情况。 此外,有时它会被保存,但只有在我再次点击编辑时才会显示。

我的编辑器初始化为:

tinyMCE.init({
    mode: "textareas",
    theme: "advanced",
    theme_advanced_buttons1 : "bold,italic,underline,separator,strikethrough,justifyleft,justifycenter,justifyright,justifyfull,bullist,numlist,indent,outdent,separator,undo,redo,first_name",
    theme_advanced_buttons2 : "",
    theme_advanced_buttons3 : "",
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    convert_newlines_to_brs : true,
    convert_fonts_to_spans : false,
    valid_elements : '*[*]',
    //    media_strict: false,
    //    encoding : "xml",
    inline_styles: false,
    verify_html : false,
    setup : function(ed) {
        ed.addButton('currentyear', {
            title : 'Tag to be replaced with the current year',
            image : 'pages/images/ed_tag_current_year.gif',
            onclick : function() {
                ed.focus();
                ed.selection.setContent('<first_namer>');
            }
        });
    }
});

0 个答案:

没有答案