Get data from iframe

前端 未结 4 863
遇见更好的自我
遇见更好的自我 2020-12-20 13:05

I am doing this first time. I have created an iframe on my page and I want the text from the iframe through jquery. Here is my code :<

4条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-20 13:29

    Use .contents() to get to iFrame's DOM.

    $('#myIframe').contents()
    

    UPDATE:

    In the OP:

    $("#result").html(iframeContent.find('body').html);
    

    Should say:

    $("#result").html(iframeContent.find('body').html());
    

提交回复
热议问题