【发布时间】:2014-07-25 07:09:30
【问题描述】:
我的页面中有一个 iframe,它将加载本地 html 内容但不加载远程 Web 内容。
代码如下:
<iframe id="frame1" src="http://localhost/test.html" width="520px" height="400px" scrolling="auto"></iframe>
这是有效的。
但以下代码不起作用:
<iframe id="frame1" src="http://www.google.co.in/" width="520px" height="400px" scrolling="auto"></iframe>
请帮忙
【问题讨论】:
-
第二个需要互联网连接才能工作。
-
是的,有网络连接,,,
标签: javascript html iframe