如何将onclick事件侦听器添加到桌子上?
我目前正在尝试添加一个功能,当我在表中单击用户的名称时,它将显示该用户发表的所有帖子,但是我完全陷入困境。帖子的URL为 https://jsonplaceholder.typicode.com/posts
我目前有桌子设置并将连接下面的表格和代码的图像。
这是我试图
使用 jquery
js js js js y y https://jquery.com/“ https://jquery.com/”将在表中显示每个用户
。当用户在表中选择用户
时,它将显示由该用户
创建的所有“帖子”。
“ data.json”>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
利用 与代码> 和 分别属性 htmlelement.dataset 对应物。
基于香草的类似于组件的方法的实现,该方法可通过
数据 - *
属性可能看起来像下一个提供的示例代码...Make use of event delegation together with
Element.closest
and thedata-*
attribute respectively itsHTMLElement.dataset
counterpart.A vanilla based implementation of a component-like approach which is partially configurable via
data-*
attributes then possibly might look like the next provided example code ...