我有一个脚本,如:
<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>";
感谢。
答案 0 :(得分:2)
命名框架并执行
window.frames["framename"].document.write('<script>...<\/script>');
window.frames["framename"].document.close();