0

我有一个问题,iframe 的 src 没有加载,我就是不知道为什么会这样。

有问题的代码:

<div style="margin-left:20%;margin-right:20%; width:60%; position: absolute; top: 450px"> 
<iframe id="frame" name="frame" marginwidth="0"  src="main.html" frameborder="0" width="100%" height="1000px"></iframe></div>

当从 W3schools 加载到 Tryit 编辑器时,它可以工作(404,但这是可以理解的),并且使用 Chrome 的编辑器灯,它也可以工作。但是当在实际站点 (www.wolfeh.com) 上运行时,它就是无法加载。它甚至不发送对 main.html 的请求。

谁能解释这里发生了什么?

更新

太晚了,看起来有人把旧代码放回去了。仍然不确定它是什么,但问题已被避免。

4

1 回答 1

0

不知道你那边发生了什么,但框架加载正常。我会尝试添加绝对路径以防万一:

<div style="margin-left:20%;margin-right:20%; width:60%; position: absolute; top: 450px"> 
<iframe id="frame" name="frame" marginwidth="0"  src="http://wolfeh.com/main.html" frameborder="0" width="100%" height="1000px"></iframe></div>
于 2013-05-01T21:47:34.650 回答