gpt4 book ai didi

jquery - 在jquery中获取选定tr的td值

转载 作者:搜寻专家 更新时间:2023-10-31 02:26:20 25 4
gpt4 key购买 nike

下面是我的表格

<table>
<tr class=chargeTR>
<td id=chargeTD>
charge1
</td>
</tr class=chargeTR>
<td id=chargeTD>
charge2
</td>
</tr>
<table>

下面是我的 jQuery 调用

$(".chargeTR").each(function() { // this line works fine
$.get("process.php", {
value: $(this).find("#chargeTD").val(), // I must be doing something wrong here...
}, function(theXML){
alert(theXML);
});
});

我无法获取“charge1”和“charge2”的值。

有人可以纠正我吗?

最佳答案

使用 .text().html() 而不是 .val(),因为 .val 旨在从表单中获取 value="" 属性。

关于jquery - 在jquery中获取选定tr的td值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2894604/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com