function getElement(){
var iBody = $("#frametest").contents().find(".eod-topbox").html();
document.getElementById("demo").innerHtml=iBody;
alert(iBody);
}
我正在使用此代码片段。我想访问此eod-topbox类的锚标记以及嵌套div的img标记和锚标记的内容。
<div class="eod-topbox">
<a href="some link">dfdf</a>
<div id="something">
<img src="">
</div>
</div>