我正试图为用户提供一个链接,让他们使用RSS订阅源订阅我的博客。
<div id="rss_link" style="margin-left:35%; margin-right:20%; width:10em;">
<a href="http://therearenoroads.com/feed">
<img style="width:90px; height:90px;" src="http://blog.sironaconsulting.com/.a/6a00d8341c761a53ef0120a7abc384970b-120wi" alt="RSS Link" />
</div>
<p style="font-size:1.3em; text-align:center;">Feed of TANR Knowledge</p>
</a>
这是链接上出现的错误。。。
此XML文件似乎没有任何关联的样式信息。文档树如下所示。
然后是一大堆代码。
你知道这个问题可能在哪里吗?
与其说这是一个错误,不如说这是关于如何显示提要的一个注释。它让你知道你的提要没有被设置样式,而是以原始形式输出。这并不一定是"坏的",因为它仍然可以作为RSS提要工作。它不会那么漂亮。比较:http://news.google.com/?output=rss(没有样式的有效RSS源)http://feeds.bbci.co.uk/news/rss.xml?edition=int(样式为RSS)
您正在关闭<a>
元素中的</div>
。你可能想要这样的东西:
<div id="rss_link" style="margin-left:35%; margin-right:20%; width:10em;">
<a href="http://therearenoroads.com/feed">
<img style="width:90px; height:90px;" src="http://blog.sironaconsulting.com/.a/6a00d8341c761a53ef0120a7abc384970b-120wi" alt="RSS Link" />
<p style="font-size:1.3em; text-align:center;">Feed of TANR Knowledge</p>
</a>
</div>
此外,当你点击大多数rss提要时,chrome中也会发生这种情况,因为它没有rss订阅小部件。在firefox中,提要的处理要流畅得多。