如何获得特定的div元素

时间:2014-01-12 16:16:22

标签: jquery html

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>

0 个答案:

没有答案