我想选择以下代码中附加的最后一个选项:
var o=$('select[name="D1"]');
o.append('<option value="'+buval+'">'+butxt+'</option>');
$("select[name="D1"] :last-child").fadeIn('slow')
我想在最后一段代码中选择[name =“D1”]而选择它,因为我之前选择了它。还有其他选择吗?如下面的代码?
o.$(":last-child").fadeIn('slow')
答案 0 :(得分:2)
尝试:
o.find(":last-child").fadeIn("slow");
或者:
$(":last-child", o).fadeIn("slow);
答案 1 :(得分:2)
o.children('option:last-child').fadeIn('slow');