我在网页上有一个动态表格,我正在另一个应用程序上调用该页面。我试图单独显示该表而不是整个页面。所以我根据堆栈交换的其他一些答案编写了一个代码。但它仍然显示整个页面。如果表格只有 2 行,则显示有 2 行的表格和整个空白页。无法弄清楚什么是错的。还有其他方法吗?
<script language="javascript" type="text/javascript">
function resizeIframe(obj) {
obj.style.height = obj.contentWindow.document.getElementById("dvMain").offsetHeight + 'px';
// alert(obj.style.height);
}
</script>
<iframe src="www.google.com" width="100%" marginwidth="0" marginheight="0" frameBorder="0" id="iframe" onload='javascript:resizeIframe(this);'>
</iframe>