gpt4 book ai didi

javascript - 如何使用 jquery 按顺序从多个元素移动文本?

转载 作者:行者123 更新时间:2023-12-03 06:44:09 25 4
gpt4 key购买 nike

我想按顺序将文本从多个元素移动到其他元素。我不想移动元素,只想移动内部文本。设置基本上是:

<p class='button_text'>Text here.</p>
<p class='button_text'>More text here.</p>

`

<div class="button">Button 1</div> <div class="button">Button 2</div>

我试图改变:

var button_text = $('.button_text').html();
$('.button').html(button_text);

产生

<div class="button">Text here.</div>
<div class="button">Text here.</div>

但我希望它产生:

<div class="button">Text here.</div>
<div class="button">More text here.</div>

非常感谢您的帮助!

最佳答案

您可以先尝试循环遍历 p 标签。喜欢 -

$(document).ready(function(){
var btn = $('.button_text');
var index = 0;
$('.button').each(function(){
$(this).html($(btn[index]).text());
index++;
});
});

关于javascript - 如何使用 jquery 按顺序从多个元素移动文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37823379/

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