こんにちは、私は NicEditor を使用しています。フォント サイズを異なる方法で動作させたいと考えています。現在、エディターは次のものを使用しています。
<font size='1...7'>the selected text here</font>
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
タグに置き換えるように変更するコードが見つかりません。
どんな提案でも大歓迎です。
ありがとうございました