2

我有一个脚本,例如:

<script> document.body....make something and draw many things in the browser </script>

我想在 iframe 中执行沙盒。如何在 iframe 中加载这段 javascript?

我正在尝试不起作用的方法:

document.getElementById('previewFrame').contentWindow.document.body.innerHTML = "<script language='javascript'></script>";

谢谢。

4

1 回答 1

4

命名框架并执行

window.frames["framename"].document.write('<script>...<\/script>');
window.frames["framename"].document.close();
于 2012-09-21T19:19:25.783 回答