How to get WHOLE content of iframe?

后端 未结 4 2054
余生分开走
余生分开走 2021-01-05 07:36

I need to get whole content of iframe from the same domain. Whole content means that I want everything starting from (including), not only &l

4条回答
  •  既然无缘
    2021-01-05 08:01

    If it is on the same domain, you can just use

    iframe.contentWindow.document.documentElement.innerHTML
    

    to get the content of the iframe, except for the and tag, where

    iframe = document.getElementById('iframeid');
    

提交回复
热议问题