访问 DIV 内的子元素 - jquery

发布于 2024-11-01 16:19:14 字数 171 浏览 0 评论 0原文

我正在尝试找到一种方法使其行可点击。因此,当我单击时,它会输出一个 id 或提醒某些内容说它是可单击的。

我尝试使用 jQuery 的选择器来访问 div 名称和表行(该 div 的子元素)。

因此,我尝试访问 div“GridLoad”内的 tr,并且我使用 jQuery 选择器来执行此操作。

I am trying to find out a way to make its rows clickable. So when I click, it would either output an id or alert something to say it is clickable.

I tried to use jQuery's selectors to access the div name and table rows which are child elements of that div.

So I am trying to access the tr's inside the div "GridLoad", and I am using the jQuery selector to do that.

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

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

发布评论

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

评论(2

冰雪梦之恋 2024-11-08 16:19:14
  1. $('#gridLoad tbody>tr'), but
  2. 在哪里?

  1. $('#gridLoad tbody>tr'), but <div id="GridLoad", gridLoad != GridLoad
  2. Where is <table> ?
静谧幽蓝 2024-11-08 16:19:14

尝试 $("#gridLoad tr") 获取 gridload 下的所有行

try $("#gridLoad tr") to get all of the rows under gridload

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