gpt4 book ai didi

javascript - 获取表中 td 内选择标签的选定选项值

转载 作者:行者123 更新时间:2023-11-30 07:54:25 25 4
gpt4 key购买 nike

我在表中动态添加一个选择选项标签,在提交时我正在迭代表 tr 以查找 td 中的元素。它将选择标签作为字符串本身返回给我。在这里我无法获得选择标签的选定选项

我的代码是

$('#tableid tbody tr').each(function() {   
var countryTag = $(this).find('td:eq(2)').html(); // return the whole select option as string
var selCntry = countryTag.find('option:selected').val(); // this is throwing error.
}

但是在给表格添加select标签时,selected属性对任何选项都不可用。

我怎样才能得到所有选定的国家

P.S:本文是手机发的。所以可能有错字

最佳答案

你能试试这样吗:

$('#tableid tbody tr').each(function() {   
var tdObject = $(this).find('td:eq(2)'); //locate the <td> holding select;
var selectObject = tdObject.find("select"); //grab the <select> tag assuming that there will be only single select box within that <td>
var selCntry = selectObject.val(); // get the selected country from current <tr>
});

关于javascript - 获取表中 td 内选择标签的选定选项值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43862948/

25 4 0