多个iFrame,只加载第一个

时间:2014-02-10 01:18:39

标签: html iframe

我有多个iFrame:

<html>
<head>
<title>Page</title>
</head>
<body>
<iframe src="http://website1.com" /><p></p>
<iframe src="http://website2.com" /><p></p>
<iframe src="http://website3.com" /></p>
<iframe src="http://website4.com" /><p></p>
</body>
</html>

但是,website1.com作为iframe加载。如果我把website2放在它上面,只加载website2。如何加载所有4个iframe?它没有隐藏,我使用inspect元素来验证是否只显示了website1。

1 个答案:

答案 0 :(得分:1)

您的问题是iFrame不是自动关闭标签。请改为使用此语法制作iFrame标记:

<iframe src="http://google.com"></iframe><p></p>
<iframe src="http://yahoo.com"></iframe><p></p>
<iframe src="http://ask.com"></iframe><p></p>
<iframe src="http://bing.com"></iframe><p></p>

JSFiddle: http://jsfiddle.net/7q6BC/