您可以使用以下方法來獲取iframe的內容:
contentWindow.document
屬性來訪問iframe的文檔對象,并使用innerHTML
屬性來獲取其HTML內容。var iframe = document.getElementById('myIframe');
var iframeContent = iframe.contentWindow.document.documentElement.innerHTML;
contents()
方法來獲取iframe的文檔對象,并使用html()
方法來獲取其HTML內容。var iframeContent = $('#myIframe').contents().find('html').html();
請注意,由于瀏覽器的安全策略限制,您只能在與主文檔同源的情況下訪問iframe的內容。如果iframe的源與主文檔不同源,您將無法直接訪問其內容。