我刚开始使用TinyMCE作为WYSIWYG编辑器,我想知道是否有人看到我的问题使用过这个漂亮的编辑器可以帮助我,这是我的脚本:
<script type="text/javascript">
tinyMCE.init({
mode : "exact",
elements : "comment",
theme : "advanced",
plugins : "emotions,spellchecker,advhr,insertdatetime,preview",
// Theme options - button# indicated the row# only
theme_advanced_buttons : "undo,redo,|,bold,italic,underline,|,justifyleft,justifycenter,justifyright,fontselect,fontsizeselect,|,forecolor,backcolor,link,unlink,image,charmap,emotions",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
skin : "o2k7",
skin_variant : "silver"
});
</script>
但是我得到了其他图标,真的不知道如何删除它,例如:'sub',sup,'HTML editor',.. 提前致谢, 我的问候。
答案 0 :(得分:9)
您需要为工具栏的所有3行定义按钮,即使您不希望其中包含按钮。例如:
theme_advanced_buttons1 : "undo,redo,|,bold,italic,underline,|,justifyleft,justifycenter,justifyright,fontselect,fontsizeselect,|,forecolor,backcolor,link,unlink,image,charmap,emotions",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
参考:http://tinymce.moxiecode.com/wiki.php/Configuration:theme_advanced_buttons_1_n
否则,我相信你会得到一些默认行为。尝试一下,看看它是否有帮助。
答案 1 :(得分:0)
theme_advanced_buttons1
对我不起作用,所以你可以试试这个
$(window).load(function(){
$('#mce_14-body').hide();
$('#mce_28-body').hide();
$('#mce_20-body').hide();
});
id选择器可以指向面板或按钮等。