nicEditor add/remove 图标使用 jquery
nicEditor add/remove icons using jquery
我已尝试将富文本编辑器添加到我的应用程序中。我正在使用 nicEdit.
bkLib.onDomLoaded(function() {
nicEditors.editors.push(new nicEditor().panelInstance(document.getElementById('single_answer_description')));
});
我添加这部分是为了将我的普通文本区域转换为富文本编辑器。看起来不错:
我现在要做的是只显示B
、I
、U
等部分图标。我不想要所有的图标。我怎样才能隐藏那些?我还想在富文本编辑器内容中默认设置字体系列。
我尝试搜索了很多链接,但找不到解决此问题的任何合适方法。请帮助我摆脱这个问题。提前致谢。
您可以在实例化对象时添加所需按钮的数组。
bkLib.onDomLoaded(function() {
nicEditors.editors.push(
new nicEditor({buttonList:['bold','italic']}).panelInstance(document.getElementById('single_answer_description')));
});
我已尝试将富文本编辑器添加到我的应用程序中。我正在使用 nicEdit.
bkLib.onDomLoaded(function() {
nicEditors.editors.push(new nicEditor().panelInstance(document.getElementById('single_answer_description')));
});
我添加这部分是为了将我的普通文本区域转换为富文本编辑器。看起来不错:
我现在要做的是只显示B
、I
、U
等部分图标。我不想要所有的图标。我怎样才能隐藏那些?我还想在富文本编辑器内容中默认设置字体系列。
我尝试搜索了很多链接,但找不到解决此问题的任何合适方法。请帮助我摆脱这个问题。提前致谢。
您可以在实例化对象时添加所需按钮的数组。
bkLib.onDomLoaded(function() {
nicEditors.editors.push(
new nicEditor({buttonList:['bold','italic']}).panelInstance(document.getElementById('single_answer_description')));
});