gpt4 book ai didi

javascript - 遍历html文件获取href

转载 作者:行者123 更新时间:2023-12-02 22:38:06 24 4
gpt4 key购买 nike

我的html文件如下

<div id="sidebar" style="top: 100px;">
<div class="items">
<div class="item hentry selected" itemscope="" itemtype="http://schema.org/BlogPosting" data-id="3714235398193725034">

<img class="thumbnail" src="http://4.bp.blogspot.com/-FLnjwm6youQ/UUGhQei8KqI/AAAAAAAAAUE/nEl-5V5IcDw/s30-p/1.jpg" style="width: 30px; height: 30px;">

<h3 class="title entry-title" itemprop="name">


<a href="http://mywebsiteurl/2013/03/blog-post.html" rel="bookmark" itemprop="url">art1</a>

</h3>

</div>
<div class="item hentry" itemscope="" itemtype="http://schema.org/BlogPosting" data-id="179325489509322215">
.
.
.
</div>
</div>
</div>

html 有一个带有 id 侧边栏的 div

在其下有另一个带有类项目的 div

下面有多个带有类 item 的 div

在每个带有类项目的 div 下,我有一个带有类标题的 h3

在 h3 标签下我有“a”标签

我需要获取所有带有类 item 的 div 下“a”标签的 href 值。

我希望获得有关如何执行相同操作的帮助。

谢谢

最佳答案

尝试使用内联 jQuery 后:

$.each($("#sidebar .items .item h3 a"),function(a,b){console.log($(b).attr("href"));});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id="sidebar" style="top: 100px;">
<div class="items">
<div class="item hentry selected" itemscope="" itemtype="http://schema.org/BlogPosting" data-id="3714235398193725034">

<img class="thumbnail" src="http://4.bp.blogspot.com/-FLnjwm6youQ/UUGhQei8KqI/AAAAAAAAAUE/nEl-5V5IcDw/s30-p/1.jpg" style="width: 30px; height: 30px;">

<h3 class="title entry-title" itemprop="name">


<a href="http://mywebsiteurl/2013/03/blog-post.html" rel="bookmark" itemprop="url">art1</a>

</h3>

</div>
<div class="item hentry" itemscope="" itemtype="http://schema.org/BlogPosting" data-id="179325489509322215">
<img class="thumbnail" src="http://4.bp.blogspot.com/-FLnjwm6youQ/UUGhQei8KqI/AAAAAAAAAUE/nEl-5V5IcDw/s30-p/1.jpg" style="width: 30px; height: 30px;">

<h3 class="title entry-title" itemprop="name">


<a href="http://example.com" rel="bookmark" itemprop="url">art2</a>

</h3>
</div>
</div>
</div>

关于javascript - 遍历html文件获取href,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58679362/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com