以下程式碼是在編輯器中點選H2按鈕,彈跳視窗輸入資訊輸出這個結果:[h2]彈窗輸入的內容[/h2]
<code>(function () { function Wecenterh2Dialog(editor) { return { title: 'H2', minWidth: 470, minHeight: 110, buttons: [ CKEDITOR.dialog.okButton, CKEDITOR.dialog.cancelButton ], contents: [ { elements: [ { id: 'text', type: 'text', required: true, commit: function () { if (this.getValue()) { editor.insertHtml('[h2]' + this.getValue() + '[/h2]'); //editor.insertText( '!![输入内容](' + this.getValue() + ')' ); } } }, { type: 'html', html : '<p style="font-size:14px;color:#999;">我们目前支持: h2 !</p>' } ] } ], onLoad: function () { //alert('onLoad'); }, onShow: function () { //alert('onShow'); }, onHide: function () { //alert('onHide'); }, onOk: function () { this.commitContent(); }, onCancel: function () { //alert('onCancel'); }, resizable: false }; } CKEDITOR.dialog.add('Wecenterh2', function (editor) { return Wecenterh2Dialog(editor); }); })();</code>
現在我不想讓他透過彈跳視窗的方式輸入,怎麼修改可以透過編輯器中【B】也就是加粗的方式直接,選取文章中某些內容(例如選取文章中的:彈跳視窗輸入的內容,然後按下編輯器的H2)後直接輸出:[h2]彈跳視窗輸入的內容[/h2]
以下程式碼是在編輯器中點選H2按鈕,彈跳視窗輸入資訊輸出這個結果:[h2]彈窗輸入的內容[/h2]
<code>(function () { function Wecenterh2Dialog(editor) { return { title: 'H2', minWidth: 470, minHeight: 110, buttons: [ CKEDITOR.dialog.okButton, CKEDITOR.dialog.cancelButton ], contents: [ { elements: [ { id: 'text', type: 'text', required: true, commit: function () { if (this.getValue()) { editor.insertHtml('[h2]' + this.getValue() + '[/h2]'); //editor.insertText( '!![输入内容](' + this.getValue() + ')' ); } } }, { type: 'html', html : '<p style="font-size:14px;color:#999;">我们目前支持: h2 !</p>' } ] } ], onLoad: function () { //alert('onLoad'); }, onShow: function () { //alert('onShow'); }, onHide: function () { //alert('onHide'); }, onOk: function () { this.commitContent(); }, onCancel: function () { //alert('onCancel'); }, resizable: false }; } CKEDITOR.dialog.add('Wecenterh2', function (editor) { return Wecenterh2Dialog(editor); }); })();</code>
現在我不想讓他透過彈跳視窗的方式輸入,怎麼修改可以透過編輯器中【B】也就是加粗的方式直接,選取文章中某些內容(例如選取文章中的:彈跳視窗輸入的內容,然後按下編輯器的H2)後直接輸出:[h2]彈跳視窗輸入的內容[/h2]