-1

使用以下代码:

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

                //Get the options of this select

            });

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

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

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

我该怎么做,因为$(t,"option")不工作?

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

4

2 回答 2

2

尝试这个

$("#DialogTable select.select-button-dropdown").each(function(t) {
    $(this).find('option'); //gets all option
});
于 2013-08-02T09:57:06.447 回答
2

$("option",this)在您的每个回调中使用

或者 -

$(this).find('option')

于 2013-08-02T09:56:05.747 回答