我用 iframe 创建了一个 asp.net 页面。iframe 有一个 HTML 页面。现在我通过 url 引用 HTML 内容Admin/Home.aspx#Personnel_Data
。但它不起作用。请帮我解决这个问题。
问问题
1798 次
1 回答
0
试试这些
docment.getElementById('iframe').contentWindow。
document.getElementById('FrameId').contentWindow.document.body.innerHTML
document.getElementById('FrameId').contentWindow.document.body.outerHTML
var doc = document.getElementById('FrameId').contentWindow.document;
于 2012-10-18T05:57:35.850 回答