私はJavaScriptが少し苦手なので、助けてください。body タグの一番下にこれがあります:
<iframe id="scriptFrame" name="scriptFrame" height="0" width="0">
<script type="text/javascript" language="javascript">
alert("Hello World");
parent.alert("Hello world");
function foo()
{
alert("Hello World");
}
</script>
</iframe>
どちらのアラートもポップアップしません。私は何を間違っていますか?html と head タグを追加しようとしましたが、役に立ちませんでした。document.getElementById('scriptFrame').contentWindow.foo() と frames['scriptFrame'].foo() も試しましたが、どちらも機能しませんでした