我有几个具有相同类名的 div。但有不同的内容。它们如下所示
<div class="schoolLib">
<div class="message">
<span class="msgTextLib">This is a sample text.</span>
</div>
</div>
<div class="schoolCanteen">
<div class="message">
<span class="msgTextcanteen">This is another sample text.</span>
</div>
</div>
<div class="schoolBus">
<div class="message">
<span class="msgTextBus">This is a sample text for Bus.</span>
</div>
</div>
如何使用 .html() 获取消息类 div 中的所有文本。我的内容是动态的。我有不同的跨度课程。我还需要使用 .html() 为所有 div 设置不同的文本。所以我需要一种方法来迭代地获取类名消息下的所有内容。我知道 .each() 方法,但不知道该怎么做。作为一个初学者,我需要你的帮助。我会很感激你的帮助。