我想在javascript中选择框的onchange事件触发时用一些内容填充tinymce主体。我尝试了一些东西,但它对我不起作用。请指导我正确的方向。这是我在 textarea 上附加 tinymce 的代码
$(function() {
appendTinyMCE();
function appendTinyMCE(){
tinyMCE.init({
// General options
mode : "textareas",
theme : "advanced",
plugins : "preview",
// Theme options
theme_advanced_buttons1 : "forecolor,backcolor,|,justifyleft,justifycenter,justifyright,justifyfull,bullist,numlist,|,formatselect,fontselect,fontsizeselect,sub,sup,|,bold,italic,underline,strikethrough",
theme_advanced_buttons2 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true
});}
});
这是html代码
<td>
<textarea rows="15" name="MyTinymceContent" cols="90" >MyTestContent</textarea>
现在我想在 javascript 中更改选择框时用新内容填充 tinymce。所以我写了下面的代码片段来改变选择框
function populateMyTinyMCE() {
document.form.MyTinymceContent.value ="MyNewContent";
}
但它并没有将新内容放入tinymce正文中。我不确定我在这里缺少什么?