使用jquery隐藏具有相同id的所有td

发布于 2024-10-29 03:31:29 字数 165 浏览 0 评论 0原文

<td id="valhisprofitVal"><%= Math.Round(profit, 5) %>%</td>

这些行是动态添加的,因此可以有多行具有相同的 Id。

如何使用 Jquery 隐藏所有这些?

<td id="valhisprofitVal"><%= Math.Round(profit, 5) %>%</td>

These rows are added dynamically, so there can be multiple rows with the same Id.

How do I hide all of them using Jquery?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

归途 2024-11-05 03:31:29

你不能。只有一个元素可以有自己的 ID,多个元素不能共享相同的 ID。因此,如果您尝试使用 JavaScript 查找具有相同 ID 的元素,您将只能获得这些元素中的第一个。

使用类代替:

<td class="valhisprofitVal"><%= Math.Round(profit, 5) %>%</td>

然后在 jQuery 中选择类:

$('.valhisprofitVal').hide();

You can't. Only one element can have its own ID, you can't share the same ID among multiple elements. And because of that, if you try to use JavaScript to find elements with the same ID, you'll only obtain the first of those elements.

Use a class instead:

<td class="valhisprofitVal"><%= Math.Round(profit, 5) %>%</td>

Then in jQuery, select the class:

$('.valhisprofitVal').hide();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文