解决方法
这应该让你开始。请注意,我使用单元格内容作为选项的值和文本。你可能需要改变这一点,但是从这个问题来看还不清楚。
var items=[],options=[]; //Iterate all td's in second column $('#tableId tbody tr td:nth-child(2)').each( function(){ //add item to array items.push( $(this).text() ); }); //restrict array to unique items var items = $.unique( items ); //iterate unique array and build array of select options $.each( items,function(i,item){ options.push('<option value="' + item + '">' + item + '</option>'); }) //finally empty the select and append the items from the array $('#selectId').empty().append( options.join() );