是否有一種方法,使用javascript,只要特定的選擇標籤改變其值,就加載模板?例如,用戶將選擇的值從無到有更改爲「Template_1」,則ckeditor應加載「Template_1」。在選擇變更時加載模板
HTML:
<select id="tipe">
<option>Template_1</option>
</select>
<textarea class="ckeditor form-control html" id="motivo" name="motivo" rows="6" data-error-container="#editor2_error"></textarea>
的JavaScript:
CKEDITOR.replace('motivo');
$('#tipe').change(function(){
var template = $(this).val();
////Code Here to replace template
});
我已經預裝 「Template_1」 關於CKEditor的模板。
你可以添加一些代碼,我們跟...共事。如果你想進一步把它放到JSFiddle中。 –