gpt4 book ai didi

javascript - 使用 .html() 在另一个 div 中选择多个 div 文本

转载 作者:行者123 更新时间:2023-11-30 08:46:58 26 4
gpt4 key购买 nike

我有一个与此类似的 div 结构:

<div class="box">
<div class="input">ABC</div>
<div class="input">DEF</div>
</div>

现在我需要获取 box 中的 HTML 文本类(class)。

使用:

$('.box').html();

返回 <div class="input">ABC</div><div class="input">DEF</div> .

仅返回 inputs 中的文本div,我试过了

$('.box div.input').html();

但这只给我第一个 div 的 html 内容。如何获取第二个及后续div的内容?

谢谢!

最佳答案

在 jQuery 中使用 text() 方法

$('.box').text();

FIDDLE DEMO

文档:http://api.jquery.com/text/

关于javascript - 使用 .html() 在另一个 div 中选择多个 div 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21161776/

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