gpt4 book ai didi

javascript - 寻找值而不是文本

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

我已经搞乱了几天并尝试不同的事情。我正在处理的是表中的一行,其中只有普通单元格和文本框单元格。它们最初都是通过数据库查询填充的。然后操作文本框中的值。我需要的是能够将它们读回并将它们重新插入数据库。我试图用什么来重新阅读它们,但不起作用有人可以帮助我吗?我知道我的 readTblValues1() 函数不会执行插入等操作,我可以弄清楚我只需要帮助弄清楚如何从 5 个文本框中获取值。

谢谢!

$rowCount = 1;
while($row = mssql_fetch_array($result, MSSQL_ASSOC)){
if ($rowCount%2){
echo "<tr>

<td class=\"tg-vn4c\">".$row['Order_Number']."</td>
<td class=\"tg-vn4c\"><input class=\"txt\" id=\"".$rowCount."\" type=\"text\" name=\"".$rowCount."\" size=\"4\" value = '".$row['conf_1']."'></td>
<td class=\"tg-23bk\"><input class=\"txt\" id=\"".$rowCount."\" type=\"text\" name=\"".$rowCount."\"size=\"4\" value = '".$row['conf0']."'></td>
<td class=\"tg-vn4c\"><input class=\"txt\" id=\"".$rowCount."\" type=\"text\" name=\"".$rowCount."\"size=\"4\" value = '".$row['conf1']."'></td>
<td class=\"tg-vn4c\"><input class=\"txt\" id=\"".$rowCount."\" type=\"text\" name=\"".$rowCount."\"size=\"4\" value = '".$row['conf2']."'></td>
<td class=\"tg-vn4c\"><input class=\"txt\" id=\"".$rowCount."\" type=\"text\" name=\"".$rowCount."\"size=\"4\" value = '".$row['conf3']."'></td>
<td class=\"tg-vn4c\"><span id=\"sum".$rowCount."\"><center>0</center></span></td>
</tr>";

}else{
echo "<tr>
<td class=\"tg-031e\">".$row['Order_Number']."</td>
<td class=\"tg-031e\"><input class=\"txt\" id=\"".$rowCount."\" type=\"text\" name=\"".$rowCount."\"size=\"4\" value = '".$row['conf_1']."'></td>
<td class=\"tg-xha5\"><input class=\"txt\" id=\"".$rowCount."\" type=\"text\" name=\"".$rowCount."\"size=\"4\" value = '".$row['conf0']."'></td>
<td class=\"tg-031e\"><input class=\"txt\" id=\"".$rowCount."\" type=\"text\" name=\"".$rowCount."\"size=\"4\" value = '".$row['conf1']."'></td>
<td class=\"tg-031e\"><input class=\"txt\" id=\"".$rowCount."\" type=\"text\" name=\"".$rowCount."\"size=\"4\" value = '".$row['conf2']."'></td>
<td class=\"tg-031e\"><input class=\"txt\" id=\"".$rowCount."\" type=\"text\" name=\"".$rowCount."\"size=\"4\" value = '".$row['conf3']."'></td>
<td class=\"tg-031e\"><span id=\"sum".$rowCount."\"><center>0</center></span></td>
</tr>";
}

$rowCount++;

}



function readTblValues1()
{

var TableData = '';

$('#tbTableValues').val(''); // clear textbox
$('#confTable tr').each(function(row, tr){
TableData = TableData
+ $(tr).find('td:eq(1)').text() + ' ' // So-Numer
+ $(tr).find('td:eq(6)').val() + ' ' // conf_1
+ $(tr).find('td:eq(7)').val() + ' ' // conf0
+ $(tr).find('td:eq(8)').val() + ' ' // conf1
+ $(tr).find('td:eq(9)').val() + ' ' // conf2
+ $(tr).find('td:eq(10)').val() + ' ' // conf3
+ $(tr).find('td:eq(11)').text() + ' ' // Total
+ '\n';
});
$('#tbTableValues').val(TableData);
}

最佳答案

N A TH,你就是那个人,我仍在学习 javascript 和 jquery,我一直在与之斗争,并且知道它必须是非常简单的东西

$(tr).find('td:eq(6) input').val()  

添加输入就是答案!

关于javascript - 寻找值而不是文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27233393/

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