gpt4 book ai didi

jquery循环每行中的每个第一个td

转载 作者:行者123 更新时间:2023-11-30 23:56:45 24 4
gpt4 key购买 nike

我有以下 jquery,它向表中的每个图像添加 onclick

$("#listtable tr td img").each(
function(intIndex) {
$(this).click(function() {
$(this).load("/Admin/ChangeIdeaStatus/" + $(this).attr('rel'));
});
}
);

这工作正常,但是我想修改它,以便只有表中每行的第一个 TD 中的图像才能获取 onclick 事件。

我尝试了以下方法,但不起作用

$("#listtable tr td:first img").each(

最佳答案

尝试使用 :first-child selector

$("#listtable tr td:first-child img").click(function() {
$(this).load("/Admin/ChangeIdeaStatus/" + $(this).attr('rel'));
});

关于jquery循环每行中的每个第一个td,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2168390/

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