gpt4 book ai didi

JQuery获取数组的第n个元素

转载 作者:行者123 更新时间:2023-12-03 21:49:51 26 4
gpt4 key购买 nike

$('#button').click(function() {
alert($('.column').val());
});

如何获取 .column 中的第一个、第二个或第三个元素?

最佳答案

$('#button').click(function() {
alert($('.column').eq(0).val()); // first element
alert($('.column').eq(1).val()); // second
alert($('.column').eq(2).val()); // third
});

关于JQuery获取数组的第n个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10568990/

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