对于我的网站,我需要从 TinyMCE 传递的输入为 1 种特定字体。我需要它们能够插入链接、使文本变为粗体、下划线或斜体。他们有 2 个标题可供选择,标题 2 和标题 3 以及段落。
现在的问题是,我不能让编辑器粘贴为文本。如果我打开 word,我可以复制和粘贴带有字体的文本,比如说 Chiller,它显示为 chiller。
如何使所有复制/粘贴的文本显示为我想要的字体(段落格式),同时允许一些按钮工作,例如粗体..等。
我目前拥有的:
<script type="text/javascript">
tinyMCE.init({
mode : "textareas",
theme : "advanced",
editor_selector : "body_content",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align: "left",
theme_advanced_buttons1: "bold,italic,underline,hr,strikethrough,formatselect,separator,undo,redo",
theme_advanced_buttons2: "justifyleft,justifycenter,justifyright,justifyfull,separator,bullist,numlist,separator,link,unlink",
theme_advanced_buttons3: "",
theme_advanced_blockformats: "p,h2,h3",
extended_valid_elements: "iframe[title|width|height|src]",
theme_advanced_fonts : "Arial=arial",
plugins : "wordcount",
setup : function(ed){
ed.onKeyUp.add(function(ed){
///
var r = 0;
var y = tinyMCE.get('body_content').getContent();
var n = "<?php echo $max;?>";
y = y.replace(/\s/g,' ');
y = y.split(' ');
for (i=0; i<y.length; i++)
{
if (y[i].length > 0) r++;
}
var word_remain=n-r;
if(word_remain<0)
word_remain=0;
jQuery('#body_word_remain').html(word_remain);
var keypressed = null;
if (window.event)
{
keypressed = window.event.keyCode;
}
else
{
keypressed = ed.which; //NON-IE, Standard
}
if (r > n )
{
var prescribed = "<?php _e('You have exceeded the prescribed ','ad')?>";
prescribed += (r-n);
prescribed += "<?php _e(' word(s)','ad');?>";
jQuery('#prescribed').html(prescribed);
}
else
{
jQuery('#prescribed').html('');
}
});
}
});
</script>
这里的示例按我想要的方式工作:http: //fiddle.tinymce.com/
但我不确定他们用什么来达到这种效果。我正在使用 2010 年 12 月 20 日发布的 3.9.3 版本,如果可能的话,我宁愿不更新它。但如果我确实需要更新它以获得我想要的效果,我会的。
谢谢!任何帮助表示赞赏。