0

我不知道如何在 Jquery 中做某事。假设我有一个包含许多选择下拉列表的表单并执行此操作...

$('#a_form select').each(function(index) {

});

在这个循环中,我想遍历每个选项,但我不知道该怎么做,是这样的......?

    $('#a_form select').each(function(index) {

        $(this + 'option').each(function(index) {
           //do things
        });
});

我不能让它工作,建议?干杯。

4

2 回答 2

4

我相信你想写$('option', this)
你也可以写$(this).find('option')

于 2010-04-18T19:43:11.050 回答
0

我会尝试

$('#a_form select option').each(function(index) {
  //do those things
});
于 2010-04-18T19:47:51.133 回答