在iframe中获取#document的内容

时间:2017-06-25 11:49:49

标签: javascript html iframe

我正在尝试从iframe访问文档正文。 我想要获取另一个iframe的src值。

<iframe src="https://putstream.com/movie/oblivion?watching=RaHP6KwPJ8prB0MfMlhJiYYwW" allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true" style="height: 820.5px;"> 
#document
    <html lang="en">
        <head><style class="vjs-styles-defaults">
        </head>

        <body>
            <iframe id="openloadIframe" allowfullscreen="" webkitallowfullscreen="true" mozallowfullscreen="true" style="width:100%;height:100%;" src="https://openload.co/embed/bbhP94t0548"></iframe>   
        </body>
    </html>

我的尝试:

var oiframe = document.getElementsByTagName('iframe')[1];       //accessing the first iframe
var sif = oiframe.getElementById('openloadIframe').src; //getting the actual content 
var ifc = oiframe.contentWindow.getElementById('openloadIframe').src;   //at this point I just tried to get it working
var ifhtml = oiframe.contentWindow.document.body.innerHTML.getElementById('openloadIframe').src;

这些都不起作用,我没有找到其他方法来访问#document的内容。

0 个答案:

没有答案