2
您好我正在使用NicEditor,我希望字體大小以不同的方式工作。 RightNow公司的編輯器使用:NicEditor字體大小從<font size ='1'>標記到<span style ='font-size:8px'>
<font size='1...7'>the selected text here</font>
我wan't它成爲一個span標籤即
<span style='font-size:30px'>the selected text here</span>
這裏是下拉代碼:
var nicEditorFontSizeSelect = nicEditorSelect.extend({
sel : {1 : '1 (8pt)', 2 : '2 (10pt)', 3 : '3 (12pt)', 4 : '4 (14pt)', 5 : '5 (18pt)', 6 : '6 (24pt)', 7 : '7 (36pt)', 8 : '8 (48pt)', 9 : '9 (72pt)', 10 : '10 90pt)', 11 : '11 (100pt)'},
init : function() {
this.setDisplay('Font Size...');
for(itm in this.sel) {
this.add(itm,'<font size="'+itm+'">'+this.sel[itm]+'</font>');
}
}
});
但我找不到要修改的代碼,以便它將font
替換爲span
中的標記在textarea旁邊。
任何建議都非常歡迎。
謝謝