本文介绍了选择倒数第二个元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要选择倒数第二个输入可选元素的值:
i need to select the value of second to last input selectable element:
<tr><td><select class="x">...</select></td></tr>
<tr><td><select class="x">...</select></td></tr>
<tr><td><select class="x">...</select></td></tr>
选择输入标签位于tr标签内。
The select input tag are inside tr tags.
如果我使用 $(select.x)。last()
,jQuery会选择最后一个元素。我需要选择倒数第二个。
If I use $("select.x").last()
, jQuery select the last element. I need to select second to last.
推荐答案
你可以使用.prev()
You can use .prev()
$("select.x").last().prev();
这篇关于选择倒数第二个元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!