在父文件中,我有:
<p id="successmsg">Text.</p>
<iframe src="file.php" name="calcFrame"></iframe>
里面 file.php 是:
<script>
jQuery(window.parent.document).ready(function() { jQuery('<p>Text to be inserted.</p>').insertAfter('#successmsg'); });
</script>
脚本没有影响。我试过 jQuery(文档)。我不确定是否需要做任何事情,比如 window.parent.document 让 jQuery 知道 id 在父页面内。