0

I am trying to pull the first paragraph from this blog into an iframe and display it's contents. Here is the blog: https://www.baronaonlinepoker.com/blog

How would I pull the first paragraph into an iframe? I currently have this code but it only displays upper left corner. It needs to be width="180" height="135". Here's the code!

<!DOCTYPE html>
<html>
<body>

<iframe src="https://www.baronaonlinepoker.com/blog" scrolling="yes" width="180" height="135">
  <p>Your browser does not support iframes.</p>
</iframe>

</body>
</html>
4

1 回答 1

0

您链接到的网站也有一个iframe链接到他们的 Wordpress 博客:http: //baronafreeplayonlinepoker.wordpress.com/

您应该使用该 URL 而不是您提到的那个。

我还建议,如果您尝试显示他们网站上最新博客文章的内容,随着时间的推移会发生变化,那么您应该阅读他们的 RSS 提要:http://baronafreeplayonlinepoker.wordpress .com/feed/

并以这种方式获得第一个提要项目(最新的)。

您的第一个选择可能是搜索外部网站的 Wordpress RSS 小部件,或者,如果您想对检索 RSS 的方式进行更多自定义,那么一种方法(如果您使用 .NET)是使用System.Net.WebClientand System.Web.WebRequest、获取和缓存结果,然后您可以使用XMLReader&SyndicationFeed类解析提要。

于 2013-09-30T17:48:24.750 回答