我有 ID 为 xacta 的 textarea,
和这个简单的小文本编辑器,它创建了我的 textarea 的 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 = "any string" - 不工作 document.getElementById('editorxacta').value = "any string" - 不工作
请帮助我如何在 tinytexteditor 的 iframe 中的 textarea 中控制、获取、插入或替换字符串值?
非常感谢您的任何建议,约瑟夫