gpt4 book ai didi

php - 禁用行表中的按钮

转载 作者:太空宇宙 更新时间:2023-11-04 04:24:23 24 4
gpt4 key购买 nike

我有一个表格,每一行都有一个发送按钮:

<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>Address</th>
<th>Button</th>
</tr>
</thead>
<tbody>
<tr>
<td id="name"></td>
<td>20</td>
<td>Street AA</td>
<td><a name="sendName" id="sendId" href="www.google.com">Send</a>
</td>
</tr>
<tr>
<td>Mr.XX</td>
<td>20</td>
<td>Street XX</td>
<td><a name="sendName" id="sendId" href="www.google.com">Send</a>
</td>
</tr>
<tr>
<td>Mr.YY</td>
<td>20</td>
<td>Street YY</td>
<td><a name="sendName" id="sendId" href="www.google.com">Send</a>
</td>
</tr>
</tbody>
</table>

Preview

我从数据库中获取的该表中的所有值。所以我想做的是,当 NAME 值为空时,发送按钮将根据其行表被禁用。

最佳答案

由于您没有输入值,我不太明白为什么要使用 javascript 来完成这样的任务。如果该值为空,则根本不显示链接。或者删除 href 属性添加一个 css 类并设置不同的链接样式。

//disabled link
<a name="sendName" id="sendId">Send</a>

我不知道这是否是复制/粘贴错误,但您在所有链接上使用了相同的 ID sendID

关于php - 禁用行表中的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18528162/

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