如何从网站获取段落并将其显示在iframe中?

时间:2013-08-15 01:04:54

标签: javascript html html5

我想从下面的网站获取第一段并将其显示在iframe中 你能纠正我的代码吗?

<!DOCTYPE html>
<html>
    <head>
        <script type="text/javascript">
            var iframe = document.getElementById('iframe');
            $(iframe).contents().find("<p>").html();
        </script>
    </head>

        <body>
            <iframe name="iframe" id="iframe" src="https://www.baronaonlinepoker.com/blog" scrolling="yes" width="180" height="135">
            </iframe>
        </body>

</html>

3 个答案:

答案 0 :(得分:0)

您最好使用DIV并使用XMLHTTPRequest来设置innerHTML

答案 1 :(得分:0)

如果浏览器从x.com加载页面,则该页面可以具有源为y.com的帧,但x.com代码将无法访问y.com DOM。这是一个跨域问题。您可以在此处阅读更多内容:http://en.wikipedia.org/wiki/Same-origin_policy

答案 2 :(得分:0)

请在此处查看我的回答:https://stackoverflow.com/a/19100553/98706 因为我认为你会以错误的方式实现目标。