jquery如何获取第一个或最后一个子元素

2025-01-08 13:38:17
推荐回答(2个)
回答1:

$(this).children("input:first-child").val();
$(this).children("input:last-child").val();

回答2:

first-child第一个子元素,last-child最后一个子元素