访问 DIV 内的子元素 - jquery
我正在尝试找到一种方法使其行可点击。因此,当我单击时,它会输出一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在哪里?
<table>
?尝试 $("#gridLoad tr") 获取 gridload 下的所有行
try $("#gridLoad tr") to get all of the rows under gridload