1

我的应用程序是基于 Web 的,由 MVC3 razor 开发。我想在我的页面中显示 SSRS 报告。为此,我使用iframe标签来显示 SSRS 报告及其工作正常。在iframe标签之后,我在其中放置了一个div并包含内容。

    <div>
<iframe height="100"  scrolling="auto" frameborder="0"  width="100%" src="http://" />
    </div>
    <div>© 2012</div>

问题:我面临问题,div即我无法查看div.

我正在使用 IE8

4

2 回答 2

4

iframe 不是自闭合标签。您应该从更改<iframe /><iframe></iframe>

 <div>
  <iframe height="100"  scrolling="auto" frameborder="0"  width="100%" src="http://"></iframe>
 </div>
 <div>© 2012</div>

iframe 可以用 HTML5 自动关闭,但 IE8 不支持。

于 2013-01-08T13:47:27.410 回答
1

您的 iframe 代码缺少关闭,您应该将代码更改为 <div>
<iframe height="100" scrolling="auto" frameborder="0" width="100%" src="http://" >< /iframe>
</div>
<div>© 2012</div><div>
<iframe height="100" scrolling="auto" frameborder="0" width="100%" src="http://" ></iframe>
</div>
<div>© 2012</div>

于 2013-01-08T13:51:51.553 回答