gpt4 book ai didi

javascript - jQuery 函数仅在第一行运行

转载 作者:行者123 更新时间:2023-11-29 07:12:41 25 4
gpt4 key购买 nike

我已经将所有值从数据库提取到表中

foreach ( $result as $print )   {
?>
<form method="post">
<tr>
<td><a href="#" id="edit-btn">Edit</a></td>
</tr>
<tr>
<div class="edit-box1">
<input id="idd" type="text" readonly="readonly" value="<?php echo $idd; ?>" name="status111">
<input type="submit" value="GO" name="edit-go">
</div>
</tr>
</form>
}

这是 jQuery 代码:

   jQuery(document).ready(
function() {
jQuery("#edit-btn").click(function() {
jQuery("#idd").prop("readonly", false);
});
});

问题是我有 20 行,而我的编辑按钮只在第一行运行。

如何让 jQuery 在所有行上运行?

最佳答案

这将是您的 HTML

$cnt=0;
foreach ( $result as $print ) {
?>
<form method="post">
<tr>
<td><a href="#" class="edit-button" id='<?php echo $cnt;?>'>Edit</a></td>
</tr>
<tr>
<div class="edit-box1">
<input id="idd<?php echo $cnt;?>" type="text" readonly="readonly" value="<?php echo $idd; ?>" name="status111">
<input type="submit" value="GO" name="edit-go">
<?php $cnt++; ?>
</div>
</tr>
</form>
}

这将是您的 jquery 代码

<script>

jQuery(document).ready(
function() {
jQuery(".edit-button").click(function() {
jQuery("#idd"+$(this).attr("id")).prop("readonly", false);
});
});
</script>

希望这一定会奏效。

关于javascript - jQuery 函数仅在第一行运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39053976/

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