我想在没有 src 的情况下更改 iframe 的内容。所以我尝试
var doc = findIframe().get(0).contentWindow.document;
doc.open();
doc.write(GM_getResourceText('iframe.html'));
doc.close();
iframe.html 的内容在哪里:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>iframe</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">some style</style>
<script> some script</script>
</head>
<body>
</body>
</html>
但是所有元素而不是 iframe 头都附加到 iframe 主体。我从主窗口执行脚本。如何解决?