gpt4 book ai didi

javascript - 如何从带有逗号分隔值的文本框创建二维数组

转载 作者:行者123 更新时间:2023-11-28 06:59:00 27 4
gpt4 key购买 nike

我有一个带有逗号分隔值的 html 文本框,例如

姓名、年龄
姓名、年龄
姓名、年龄

等等。结构将始终相同。现在我想创建一个数组,我可以在其中检索指定的值,例如:

数组[1][0](二维)

到目前为止我的代码是:

//retrieve values from textbox
var lines = $('#area').val().split(/\n/);

//create an array
var texts = []
for (var i=0; i < lines.length; i++) {
// only push this line if it contains a non whitespace character.
if (/\S/.test(lines[i])) {
texts.push($.trim(lines[i]));
}
if (/^[,]+$/.test(lines[i][i])) {
texts.push($.trim(lines[i][i]));
}

}

但这不起作用。有谁知道我如何在 javascript 中做到这一点?我是 Javascript 的初学者:-)

目标应该是将所有输入的姓名和年龄作为数组获取。

提前致谢!!

最佳答案

更改此:

texts.push($.trim(lines[i]));

对此:

 texts.push($.trim(lines[i]).split(","));

Fiddle

关于javascript - 如何从带有逗号分隔值的文本框创建二维数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32309854/

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