0

我用 iframe 创建了一个 asp.net 页面。iframe 有一个 HTML 页面。现在我通过 url 引用 HTML 内容Admin/Home.aspx#Personnel_Data。但它不起作用。请帮我解决这个问题。

4

1 回答 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;

http://www.w3schools.com/jsref/dom_obj_frame.asp

于 2012-10-18T05:57:35.850 回答