1
我想將TinyMCE豐富文本應用於只有一個使用Django生成的表單。一旦這樣做,它會在表單中插入另一個textarea。我究竟做錯了什麼?Django表單上的TinyMCE
編輯的代碼
<p><div id="AnswerBox">{{ form.as_p }}</div></p>
$('.answers').load(url, function() {
$('#AnswerBox').addClass('mceEditor',
function() {tinyMCE.init({
theme : "advanced",
mode : "specific_textareas",
editor_selector : "AnswerBox",
elements: "AnswerBox",
plugins : "fullpage",
theme_advanced_buttons3_add : "fullpage",
});
})
})
+1很好的說明 – Thariama