gpt4 book ai didi

javascript - 循环数组并在jquery中的动态文本框中填充值

转载 作者:行者123 更新时间:2023-11-30 17:08:27 25 4
gpt4 key购买 nike

这里 splitValues 包含数组,.split 是动态生成的多行 texbox 中的一个类现在我想用这个数组填充文本框。我已经做了这么多,但没有更进一步?

function InsertItems(splitValues) {
$(".split").each(function () {
if (splitValues != "") {
$(this).val(splitValues);//
}
});
}

最佳答案

改变这个:

$(this).val(splitValues);//

为此:

$(this).val(splitValues.join());//

更新:

$(".split").each(function (i, elem) {           
$(this).val(splitValues[i]);//
});

Updated Demo as suggested by Milind.

关于javascript - 循环数组并在jquery中的动态文本框中填充值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27499219/

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