iframe引进网页的文件预览不显示
发布网友
发布时间:2022-05-13 19:18
我来回答
共3个回答
热心网友
时间:2023-11-04 15:55
父页面:stockPoolHistoryView.jsp
<head>
<script type="text/javascript">
function iframeStockPoolHistoryViewRecPoolGoGoGo(width,height) {
var appSubIframeObj=document.getElementById("stockPoolHistoryViewRecPool");
appSubIframeObj.style.height=height+"px";
}
</script>
</head>
<body>
<table>
<tr>
<td>
<iframe id="stockPoolHistoryViewRecPool"></iframe>
</td>
</tr>
</table>
</body>
子页面:stockPoolHistoryViewRecRool.jsp
<head>
<script type="text/javascript">
function iframeHeightWidth(){
var height = document.body.scrollHeight;
var width = document.body.scrollWidth;
window.parent.iframeStockPoolHistoryViewRecPoolGoGoGo(width,height);
}
</script>
</head>
<body>
<fs:form>
</fs:form>
<script type="text/javascript">
iframeHeightWidth();
</script>
</body>
热心网友
时间:2023-11-04 15:55
还是路径的原因,另外你的问题中的代码里iframe和src之间没有空格,你看你的文件中有没有空格追问有空格的,这我复制的时候不小心删了,我刚把它传到服务器测试了,也能显示,无语了,不知道问题出在哪
追答上传到服务器能显示在本地不能显示的话,你就把服务器里的下载下来试试看
热心网友
时间:2023-11-04 15:56
src="./if/dd.htm"
呢