jQuery xml reader - 如何选择类别及其前 5 项
如何从以下 xml 示例中的“部分”中选择“新闻”类别,开头为:
$(feed).find('section').each(function () {
And:
<?xml version="1.0" encoding="ISO-8859-1"?>
<feed>
<section category="News">
<title>Recent News</title>
<article>
<headline lang="en">News headline here</headline>
<url>#</url>
</article>
</section>
<section category="Blog">
<title>Recent Blogs</title>
<article>
<headline lang="en">Recent blog headline here</headline>
<url>#</url>
</article>
</section>
</feed>
另外,如何仅选择前 5 篇文章?
$(this).find('article').each(function () {
var headline = $(this).find('headline').text();
var url = $(this).find('url').text();
html += '<li><a href="' + url + '">' + headline + '</a></li>';
});
How do I choose the "News" category from "section" in the following xml sample starting with:
$(feed).find('section').each(function () {
And:
<?xml version="1.0" encoding="ISO-8859-1"?>
<feed>
<section category="News">
<title>Recent News</title>
<article>
<headline lang="en">News headline here</headline>
<url>#</url>
</article>
</section>
<section category="Blog">
<title>Recent Blogs</title>
<article>
<headline lang="en">Recent blog headline here</headline>
<url>#</url>
</article>
</section>
</feed>
Also, how do I choose just the first 5 articles?
$(this).find('article').each(function () {
var headline = $(this).find('headline').text();
var url = $(this).find('url').text();
html += '<li><a href="' + url + '">' + headline + '</a></li>';
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$(feed).find('section[category="News"]').each(...
$(this).find('article').slice(0, 5).each(...
$(feed).find('section[category="News"]').each(...
$(this).find('article').slice(0,5).each(...