使用以下代码:
$("#DialogTable select.select-button-dropdown").each(function(t) {
//Get the options of this select
});
从我的表中获取所有选择。
我希望能够从每个选择中提取选项。
我通常会尝试$('#selectid option")
并返回它们,但我不能。
我该怎么做,因为$(t,"option")
不工作?
当我已经得到我的对象时,有人可以解释选择器是如何工作的吗?