0

我有一个 id 为“ p_1_input”的文本区域,如下所示,我试图限制此编辑器对话框的功能并限制其高度,因此过多的内容不会推动对话框扩展但可滚动。
我怎样才能把这两个配置放在网上,比如:“ {maxHeight : 200}" and "{buttonList : ['bold','italic']}”?

new nicEditor({buttonList : ['bold','italic']}).panelInstance('p_1_input');
new nicEditor({maxHeight : 200}).panelInstance('p_1_input');
4

1 回答 1

0

你可以这样使用。

new nicEditor({
         maxHeight: 133,
         buttonList: ['bold','italic']
          }).panelInstance('p_1_input');    
于 2013-01-04T03:18:23.477 回答