页面加载后如何在 iframe 中隐藏 div
How to hide a div inside a iframe after the page loads
我有一个链接到 SSRS 报告的 iframe。我需要隐藏顶部的控制栏。从检查元素中我找到了这个 <div id="ReportViewerControl_ctl05" class="MenuBarBkGnd ToolBarBackground" style="zoom: 1;">
是否可以在使用 iframe 中的 <style></style>
标记加载页面时隐藏此 div?
这是iframe代码
<iframe width="800" height="2000px" frameborder="0" src="https://misreporting/ReportServer/Pages/ReportViewer.aspx?%2fWC_REPORTS%2fREG%2fwc_studentProfile&stu_id=!{ViewData.Model.stuDim.stu_id}&acy_id=!{ViewData.Model.stuDim.acy_id}&rs:Command=Render&rc:Toolbar=false"></iframe>
这已通过将 styles.css 文件添加到 SQL 服务器目录来解决。将 div 隐藏在该文件中,然后在 iframe
的 url 中引用它
我有一个链接到 SSRS 报告的 iframe。我需要隐藏顶部的控制栏。从检查元素中我找到了这个 <div id="ReportViewerControl_ctl05" class="MenuBarBkGnd ToolBarBackground" style="zoom: 1;">
是否可以在使用 iframe 中的 <style></style>
标记加载页面时隐藏此 div?
这是iframe代码
<iframe width="800" height="2000px" frameborder="0" src="https://misreporting/ReportServer/Pages/ReportViewer.aspx?%2fWC_REPORTS%2fREG%2fwc_studentProfile&stu_id=!{ViewData.Model.stuDim.stu_id}&acy_id=!{ViewData.Model.stuDim.acy_id}&rs:Command=Render&rc:Toolbar=false"></iframe>
这已通过将 styles.css 文件添加到 SQL 服务器目录来解决。将 div 隐藏在该文件中,然后在 iframe
的 url 中引用它