我尝试了以下内容:
var row = $('#template_23423);
row.find('select[name^=COUNTY]').each(function (){
var selectedOption = $(this).children(':selected').val();
有什么想法吗?
答案 0 :(得分:1)
var row = $('#template_23423');
row.find('select[name^=COUNTY]').each(function(){
var selectedOption = $('option:selected', $(this)).val();
};
如果您想要他们的文字,那将为您提供options
的价值,使用text()
代替val()
。