jQuery对象选择器不工作

时间:2013-08-02 09:54:51

标签: jquery jquery-selectors

使用以下代码:

            $("#DialogTable select.select-button-dropdown").each(function(t) {

                //Get the options of this select

            });

从我的表格中获取所有选择。

我希望能够从每个选择中提取选项。

我通常会尝试$('#selectid option")并且会返回它们,但我不能。

我是如何做到的,因为$(t,"option")不起作用?

有人可以解释当我已经得到我的对象时选择器是如何工作的吗?

2 个答案:

答案 0 :(得分:2)

在每次回调中使用$("option",this)

或者 -

$(this).find('option')

答案 1 :(得分:2)

试试这个

$("#DialogTable select.select-button-dropdown").each(function(t) {
    $(this).find('option'); //gets all option
});