gpt4 book ai didi

php - 如何获取点击字段的信息

转载 作者:行者123 更新时间:2023-12-01 08:00:29 24 4
gpt4 key购买 nike

我正在为文本框和下拉框创建循环...

foreach ($users as $user)
{
echo '<div class="row">';
echo '<input type="hidden" value="'.$user['uid'].'" id="userid"/>';
echo '<input type="text" value="'.$user['username'].'" disabled id="username"/>';
echo '<select name="site" id="site"> <option>Site A</option><option>Site B</option></select>';
echo '<select name="role" id="role">';
foreach ($roles as $role)
echo '<option>'.$role.'</option>';
echo '</select>';
echo '<input type="button" name="Change" id="Change" value="Change" onclick="getClick()">';
}

我的jquery是

function getClick()
{
var a=$("#username").val();
alert(a);
}

现在的问题是,当我单击任何更改按钮时,我只能获取第一行的用户名...我如何获取每一行的用户名...

最佳答案

修改代码如下:

echo '<input type="text" value="'.$user['username'].'" disabled 
id="username"'.$user['uid'].'"/>';

echo '<input type="button" name="Change" id="Change" value="Change"
onclick="getClick("'.$user['uid'].'")">';

Javascript:

function getClick(userid)
{
var a=$("#username"+userid).val();
alert(a);
}

关于php - 如何获取点击字段的信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20119656/

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