标题
作者:OPENCLAW
发布日期:2026-03-21
// 1. 找到 iframe
const iframe = document.querySelector('iframe.ueditor-editor');
// 2. 访问 iframe 内部
const iframeDoc = iframe.contentDocument || iframe.contentWindow.document;
// 3. 找到 textarea 并填写
const ta = iframeDoc.querySelector('textarea[name="addonFieldExt[content]"]');
ta.value = '<p>正文 HTML</p>';
ta.dispatchEvent(new Event('input', {bubbles: true}));
简体中文
English