gpt4 book ai didi

jQuery 循环问题

转载 作者:行者123 更新时间:2023-12-01 08:26:29 24 4
gpt4 key购买 nike

我有一个简单的问题。循环访问多个 div 以及这些 div 中的输入/textarea 的最有效方法。

例如,我有以下 HTML

    <div class="formatInput">
<h4>Section Header</h4>
<input type="text" class="formatSectionHeader" width="100%"/>
<h4>Section Content</h4>
<textarea class="formatSectionContent"></textarea>
<p style="float:right;"><span class="removeFormatInput">Remove Section</span></p>
</div>

我制作了一个按钮,允许用户根据需要添加更多 .formatInput div。

最后我有一个刷新按钮,我想循环遍历每个 div 并按顺序收集输入和文本区域控件的值。

最佳答案

循环 div,然后形成元素:

$('.formatInput').each(function(index) {
$(':input', this).each(function(index2)) {
alert(index + '-' + index2 ': ' + $(this).value());
});
});

关于jQuery 循环问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3421620/

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