ai didi

javascript - 在 php 中,我如何为 while 循环中创建的每个输入文本框生成动态 id

转载 作者:行者123 更新时间:2023-11-30 12:46:50 24 4
gpt4 key购买 nike

如何获取在 while 循环中生成的选定文本框 ID,以便像在 phpmyadmin 中一样更新字段

 <?php
while($fet=mysql_fetch_assoc($sql1))
{
?>
<tr>
<td><input type=text id='hello' name='hello' data-id="<?php echo $fet['username']?>" onchange='loadXMLDoc(this);' value=<?php echo $fet['username']?>>
<td><input type=text id='uid' name='uid' onchange='loadXMLDoc(this).' value=<?php echo $fet['id']?>>
</tr>
<?php
}
?>

最佳答案

只需附加 i 并递增它直到你的 while 循环继续..

<?php
$i=1;
while($fet=mysql_fetch_assoc($sql1))
{
echo '
<tr>
<td>
<input type="text" id="hello'.$i.'" name="hello'.$i.'" data-id="'.$fet['username'].'" onchange="loadXMLDoc(this.value,'.$i.')" value='.$fet['username'].' >
</td>
</tr>';
here write ur code for other fields

$i++;
}
?>

<script>
function loadXMLDoc(a,i)
{ var d= document.getElementById("hello"+i).value; }
</script>

关于javascript - 在 php 中,我如何为 while 循环中创建的每个输入文本框生成动态 id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22265184/

24 4 0
文章推荐: javascript - 无法创建 Chrome 扩展程序
文章推荐: javascript - 使用 jquery 查找 html 标签号
文章推荐: c# - C#中对象的加密序列化
文章推荐: javascript - 如何在 rails 中降级到较低版本的 jquery?
行者123
个人简介

我是一名优秀的程序员,十分优秀!

滴滴打车优惠券免费领取
滴滴打车优惠券
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com