gpt4 book ai didi

javascript - Ajax:如何获取具有动态生成的 ID 的元素的值

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

<分区>

我有一大块用 PHP 生成的 HTML 代码。

HTML 看起来像这样:

<input type="text" id="10"><button onclick="process()">send</button>

<input type="text" id="11"><button onclick="process()">send</button> <!-- and so on until id=N -->

PHP 代码如下:

<?php while ($row = $result->fetch_assoc()) { ?>
<input type="text" id="<?=$row['id']?>">
<button onclick="process()">send</button>
<br>
<?php } ?>

假定如果用户单击SEND 按钮,input 标记的值将传递给process() 函数。

这就是我陷入困境的地方:我不知道应该在 process() 函数中的 getElementById 中指定输入的确切 ID - 因为我不知道按下了哪个按钮。

如有任何帮助,我们将不胜感激。

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