我有一些文本区域,它们都使用 tinyMCE。
我想设置特定文本区域的内容,但我找不到如何。
我试过这个:
tinyMCE.get('title').setContent(selected_article_title);
这是我的文本区域:
<textarea style="width: 95%;" name="Title" id="title"></textarea>
这里是我的 tinyMCE 初始化:
tinyMCE.init({
// General options
mode : "specific_textareas",
theme : "advanced",
width: "100%",
plugins : "pagebreak,paste,fullscreen,visualchars",
// Theme options
theme_advanced_buttons1 : "code,|,bold,italic,underline,|,sub,sup,|,charmap,|,fullscreen,|,bullist,numlist,|,pasteword",
theme_advanced_buttons2 :"",
theme_advanced_buttons3 :"",
theme_advanced_buttons4 :"",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
valid_elements : "i,sub,sup",
invalid_elements : "p, script",
editor_deselector : "mceOthers"
});
我不知道为什么这不起作用,我使用的是 tinyMCE 网站http://www.tinymce.com/wiki.php/API3:method.tinymce.Editor.setContent中的示例