User839733648 posted
Hi zhyanadil.it@gmail.com,
According to your description and code, I suggest that you could use .each function to traverse the select value in your table.
I've made a sample and maybe you could refer to.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script>
$(function () {
$('#table1 tbody tr').each(function () {
var selVal = $(this).find('td:eq(1) select').val();
console.log(selVal);
});
})
</script>
</head>
<body>
<table id="table1">
<tbody>
<tr>
<td>111</td>
<td>
<select>
<option>aaa</option>
<option>bbb</option>
</select>
</td>
<td>222</td>
</tr>
</tbody>
</table>
</body>
</html>
result:

Best Regards,
Jenifer