ID xacta のテキストエリアがあります。
私のテキストエリアのiframeを作成するこのシンプルな小さなテキストエディタ。
var editorxacta = new TINY.editor.edit("editorxacta", {
id: "xacta",
width: 860,
height: 180,
cssclass: "tinyeditor",
controlclass: "tinyeditor-control",
rowclass: "tinyeditor-header",
dividerclass: "tinyeditor-divider",
controls: ["bold", "italic", "underline", "|", "subscript", "superscript", "|", "outdent", "indent", "|", "leftalign",
"centeralign", "rightalign", "blockjustify", "|", "hr", "link", "unlink"],
footer: false,
xhtml: true,
bodyid: "editorxacta",
cssfile: "css/style-adnx.css"
});
textareafield のテキストを取得、挿入、置換できるようになりました。
document.getElementById('xacta').value = "任意の文字列" - 機能しない document.getElementById('editorxacta').value = "任意の文字列" - 機能しない
tinytexteditorのiframeのテキストエリアで文字列値を制御、取得、挿入、または置換するにはどうすればよいですか?
ジョゼフ、ご提案ありがとうございました