Javascript从外部页面加载到OBJECT标记中的DIV获取html

时间:2016-01-06 15:18:49

标签: javascript html object-tag

我有一个本地网页:

<html><head>
<script src="jquery.min.js"></script>
</head><body>
    <object id="oid" type="text/html" data="http://some-site" width="800px" height="600px" style="overflow:auto;border:5px ridge blue">
    testing
    </object>

    <script>
    $(document).ready(function(){
        $('object').ready(function() {
            setTimeout(function(){
                page = $('object').html();
                alert(page);
            }, 3000);
        });
    });
    </script>

</body></html>

警报功能正在查看“测试”,而不是加载到Object-tag中的HTML内容。我需要它来显示加载内容中的html。我做错了什么?

0 个答案:

没有答案