私はいくつかのテキストエリアを持っていて、それらのすべてがtinyMCEである。set 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"
});
これがない理由を私は知らないが働いて、私は小さなMCEウェブサイトからの例を使用していますhttp://www.tinymce.com/wiki.php/API3:method.tinymce.Editor.setContent
ありがとうございます@タリアマ、しかしこれは私のために働いていません。私のテキストエリアはまだ空です。 –