gpt4 book ai didi

javascript - 将多个文本区域存储在不同数组的索引中

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

我有多个 textarea 例如:

<textarea>test1</textarea>
<textarea>test2</textarea>
<textarea>test3</textarea>

我知道如何迭代所有文本区域并获取值:

$(function(){
$("textarea").each(function(){
alert(this.value);
});
});

但是如何将每个文本区域存储在不同的索引处?

这不起作用:

var myArray=[];     
$(function(){
$("textarea").each(function(){
myArray.push(this.value);
});
});

无论是用 JS 还是 Jquery 都没关系

最佳答案

我相信您正在尝试在执行循环之前记录数组:

var myArray=[];     
$(function(){
$("textarea").each(function(){
myArray.push(this.value);
});
console.log('----after the loop execution-----');
console.log(myArray); //["test1", "test2", "test3"]
});
console.log('----before the loop execution-----');
console.log(myArray); //[]
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<textarea>test1</textarea>
<textarea>test2</textarea>
<textarea>test3</textarea>

关于javascript - 将多个文本区域存储在不同数组的索引中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61753633/

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