我不知道如何在 Jquery 中做某事。假设我有一个包含许多选择下拉列表的表单并执行此操作...
$('#a_form select').each(function(index) {
});
在这个循环中,我想遍历每个选项,但我不知道该怎么做,是这样的......?
$('#a_form select').each(function(index) {
$(this + 'option').each(function(index) {
//do things
});
});
我不能让它工作,建议?干杯。