1

我有一个包含以下内容的 HTML 文件

<html>
<head>
<meta charset="utf-8">
<title>builder 1.0</title>
<body>
<iframe width="100%" height="100%" src="a.html" name="cxsideframe" scrolling:'no';="" id="frame1" style="overflow:hidden;">
</iframe>
</body></html>

a.html 的内容是

<html>
<head>
<meta charset="utf-8">
<title>builder v1.0</title>

<meta content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0" name="viewport">

<meta content="desc goes here" name="description">
<meta content="auth name" name="author">
<body>
<img src="http://example.com/images/01._V397411194_.png" style="display:none" alt=""/>
<img src="http://example.com/images/V386942464_.gif" style="display:none" alt="" />
</body></html>

我需要使用 jQuery 或 javascript 从父页面中提取 a.html 的元标记和图像列表的内容。

我试过了

alert($('#frame1').contents().find($('#meta[name=description]').attr("content")).html());


and 
$('meta[name=author]').attr("content");      

但没有得到解决方案。关于如何做到这一点的任何想法?

4

2 回答 2

2

获取属性值contentUse

alert($('#frame1').contents().find('meta[name=description]').attr("content"));

并将所有图像作为数组

$('#frame1').contents().find('img')

编辑:确保在加载 iframe 内容后调用这些方法。所以使用

$("#frame1").ready(function(){
alert($('#frame1').contents().find('meta[name=description]').attr("content"));
alert($('#frame1').contents().find('img'));
})
于 2013-07-12T07:13:17.807 回答
-1

例如放置一个按钮并在按钮上获取 iframe 的内容

function getContentFromIframe(){
    var myIFrame=document.getElementById('iframe');
    var content=myIFrame.contentWindow.document.body.innerHTML;
}
于 2013-10-04T07:09:42.897 回答