我正在使用 TinyMCE 编辑器和 word 功能中的粘贴。
我的问题是,当我有空格时,tinyMCE 将它们转换为 ,我想保留正常的空间。
是否有可以在 tinyMCe.init 中使用的过滤功能或类似的东西来做到这一点?
谢谢你。
我正在使用 TinyMCE 编辑器和 word 功能中的粘贴。
我的问题是,当我有空格时,tinyMCE 将它们转换为 ,我想保留正常的空间。
是否有可以在 tinyMCe.init 中使用的过滤功能或类似的东西来做到这一点?
谢谢你。
我找到了一个灵魂,我不确定那是正确的,但它有效。在 tinyMCE.init 中,我添加了:
paste_auto_cleanup_on_paste : true,
paste_postprocess : function(pl, o) {
// remove extra line breaks
o.node.innerHTML = o.node.innerHTML.replace(/ /ig, " ");
}
这是整个 tinyMCE 初始化:
function addTinyMCE_Authors_AffiliationsWord() {
jQuery('#dialog-authors_affiliations_parsing').tinymce({
script_url: '/js/tiny_mce_3.2.7_jquery/jscripts/tiny_mce/tiny_mce.js',
width: "800px",
height: "250px",
mode: "textarea",
theme : "advanced",
plugins : "paste",
// Theme options
theme_advanced_buttons1 : "pasteword",
theme_advanced_buttons2 :"",
theme_advanced_buttons3 :"",
theme_advanced_buttons4 :"",
theme_advanced_toolbar_location : "bottom",
valid_elements : "p",
paste_auto_cleanup_on_paste : true,
paste_postprocess : function(pl, o) {
// remove  
o.node.innerHTML = o.node.innerHTML.replace(/ /ig, " ");
}
});
}
请享用...
您是否尝试添加:
entity_encoding: 'raw'
初始化tinyMce时?它对我的情况有所帮助。
问候。