jQuery xml reader - 如何选择类别及其前 5 项

发布于 2024-12-16 23:12:25 字数 1040 浏览 0 评论 0原文

如何从以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪之魂 2024-12-23 23:12:26
  1. $(feed).find('section[category="News"]').each(...
  2. $(this).find('article').slice(0, 5).each(...
  1. $(feed).find('section[category="News"]').each(...
  2. $(this).find('article').slice(0,5).each(...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文