gpt4 book ai didi

javascript - 单击后如何更改td背景颜色

转载 作者:行者123 更新时间:2023-11-28 03:28:18 26 4
gpt4 key购买 nike

我想向用户显示消息或任何类型的通知,例如点击后更改绿色背景颜色或“您点击成功”之类的消息。我的网站图片截图:

enter image description here

这是我的代码:

<tbody>
<tr>
<td>
<?php
$url=$res['url'];
$id=$res['id'];
?>
<a href="out.php?id=<?php echo $id;?>" onclick="myFunction()" target="_blank" onfocus="curTab">
<img src="admin/uploads/<?php echo $res['image']; ?>" id="click"style="width:200px;height:75px;" />
</a>
</td>
</tr>
</tbody>

最佳答案

您应该使用 Javascript/jQuery 进行客户端通知。

jQuery 解决方案:

 <tr>
<td>
<?php
$url=$res['url'];
$id=$res['id'];
?>
<a href="out.php?id=<?php echo $id;?>" onclick="myFunction()" target="_blank" onfocus="curTab">
<img src="admin/uploads/<?php echo $res['image']; ?>" id="click" style="width:200px;height:75px;" class="myImgClass" />
</a>
</td>
</tr>

<script>
$(".myImgClass").click(function(){
$(this).parent().css("background-color","green");
});
</script>

关于javascript - 单击后如何更改td背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44870895/

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