使用jquery隐藏具有相同id的所有td
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。只有一个元素可以有自己的 ID,多个元素不能共享相同的 ID。因此,如果您尝试使用 JavaScript 查找具有相同 ID 的元素,您将只能获得这些元素中的第一个。
使用类代替:
然后在 jQuery 中选择类:
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:
Then in jQuery, select the class: