在iframe中加载脚本

时间:2012-09-21 19:11:48

标签: javascript jquery iframe

我有一个脚本,如:

<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>";

感谢。

1 个答案:

答案 0 :(得分:2)

命名框架并执行

window.frames["framename"].document.write('<script>...<\/script>');
window.frames["framename"].document.close();