对于那些了解JQuery的人 - 必须努力减少问题 -
我想获得elemenet,它是另一个元素的 last 子元素(类型为'input',我知道它的ID('myID')。
什么是正确的查询:
我试过了:
$("input:last-child", $("#myID"));
$("#myID input:last-child")
但它不起作用
答案 0 :(得分:7)
尝试:
$("#myID input:last") //for the last
$("#myID input:first") //for the first
答案 1 :(得分:0)
您也可以使用last方法。像这样:
$("#myID").last();
但要确保你有jquery 1.4.X.虽然:最后只匹配一个元素,但:last-child 可以匹配多个:每个父元素一个。
我觉得你写的东西会以这种方式运作..
$("#myID input:last-child").val();