我有一个包含以下内容的 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");
但没有得到解决方案。关于如何做到这一点的任何想法?