gpt4 book ai didi

javascript - 使用 Jquery 获取 "."之后的文本

转载 作者:行者123 更新时间:2023-11-30 07:54:10 25 4
gpt4 key购买 nike

我有一个这样的列表

<ul class="example">
<li>
<span class="type"></span>
<a href="#">New document.txt</a>
</li>
<li>
<span class="type"></span>
<a href="#">Another document.zip</a>
</li>
</ul>

如何获取“.”后的文字?并插入“类型”?结果应该是这样的

<ul class="example">
<li>
<span class="type">txt</span>
<a href="#">New document.txt</a>
</li>
<li>
<span class="type">zip</span>
<a href="#">Another document.zip</a>
</li>
</ul>

最佳答案

遍历 span 并使用相邻兄弟中点 (.) 之后的文本更新文本内容。

// use text method with callback to iterate and update 
// based on the returned value
$('.example .type').text(function() {
return $(this)
// get the a tag
.next()
// get text content
.text()
// split the text
.split('.')
// get the last element from array
.pop();
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<ul class="example">
<li>
<span class="type"></span>
<a href="#">New document.txt</a>
</li>
<li>
<span class="type"></span>
<a href="#">Another document.zip</a>
</li>
</ul>

关于javascript - 使用 Jquery 获取 "."之后的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44733070/

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