我无法在包含iframe的网页中加载javascript。我删除了iframe,它加载得很好。
以下是相关的html:
<iframe id="iframe" src="Welcome.html" width=50% height=90% name="iframe"/>
</body>
<script type="text/javascript">
Fname = prompt("Please type in your first and Last name", " George Washington");
Fname = Fname + "";
答案 0 :(得分:2)
iFrames没有像那样定义
<iframe id="iframe" src="Welcome.html" width=50% height=90% name="iframe"/> No Frame Support </iframe>
给它一个去
它隐含地在最后关闭标签,而iframe的中间是无帧支持
答案 1 :(得分:0)
你的JS应该在体内。我相信你还需要一个单独的iframe结束标记。