gpt4 book ai didi

jQuery 选择器只选择第一个链接

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

我有一张这样的表:

<table>
<% foreach (var item in Model.Data) { %>
<tr>
<td><a href="#"><div id="stopId"><%: item.StopID %></div></a></td>
...
...
</tr>
</table>

我正在使用这个 jQuery 来选择用户点击的站点 ID。

$(function () {
$("#stopId").live('click', function () {
var stopId = $("#stopId").html()
...
...
});
});

然而我的变量 stopId 最终总是成为表中的第一个 stopId,而不是实际被点击的那个。那么我哪里出错了?

最佳答案

你可能想改成

$(function () {
$(".stopId").live('click', function () {
var stopId = $(this);
...
...
});
});

HTML 变成了

<table>
<% foreach (var item in Model.Data) { %>
<tr>
<td><a href="#"><div **class**="stopId"><%: item.StopID %></div></a></td>
...
...
</tr>
</table>

关于jQuery 选择器只选择第一个链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5546974/

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