テキストエリアがあり、そのテキストエリアで tinyMCE を使用しています。
私が実際に行っているのは、ページが開かれると、テキストエリアにテキストを入力し、その後 tinyMCE を初期化することです。
問題は、tinyMCE の初期化後に textarea の値を変更しようとすると、何も起こらないことです。
ここに例があります。
テキストエリアの作成:
<textarea style="width: 95%;" name="title" id="title"></textarea>
テキストエリアへの入力:
$('#title').html("someText");
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を初期化する前と同じものを使用しようとしました
$('#title').html("someModifiedText"); // does not work
tinyMCE も削除しようとしました。
if(tinyMCE.getInstanceById('title'))
removeTinyMCE("title");
と
function removeTinyMCE (dialogName) {
tinyMCE.execCommand('mceFocus', false, dialogName);
tinyMCE.execCommand('mceRemoveControl', false, dialogName);
}
そして再利用するには:
$('#title').html("someModifiedText"); // does not work
私はアイデアがありません.あなたの助けをどうもありがとう....