博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Getting the ID of the element that fired an event using jQuery
阅读量:5994 次
发布时间:2019-06-20

本文共 797 字,大约阅读时间需要 2 分钟。

hot3.png

7 down vote

I generate a table dynamically out a database, receive the data in JSON and put it into a table. Every table row got a unique ID, which is needed for further actions, so, if the DOM is altered you need a different approach:

$("table").delegate("tr", "click", function() {
var id=$(this).attr('id'); alert("ID:"+id); });
|
7 down vote

I generate a table dynamically out a database, receive the data in JSON and put it into a table. Every table row got a unique ID, which is needed for further actions, so, if the DOM is altered you need a different approach:

$("table").delegate("tr", "click", function() {
var id=$(this).attr('id'); alert("ID:"+id); });
|

转载于:https://my.oschina.net/xiaohelong/blog/497871

你可能感兴趣的文章
内存损坏问题的演示样例及分析
查看>>
利用PowerDesigner15在win7系统下对MySQL 进行反向project(二)
查看>>
3-7-队列的链式存储-栈和队列-第3章-《数据结构》课本源码-严蔚敏吴伟民版
查看>>
Mac系统配置多个git账号
查看>>
目录 如何成为一个合格的段子手
查看>>
[LeetCode] 3Sum Smaller 三数之和较小值
查看>>
使用requireJS的shim參数,完毕jquery插件的载入
查看>>
android: 文件存储
查看>>
朴素贝叶斯分类及应用
查看>>
二、通过复指数看信号
查看>>
NuGet在创建pack时提示”The replacement token 'author' has no value“问题解决
查看>>
例题(8.9) 打印水仙花数 (1041)
查看>>
ListView优化中的细节问题
查看>>
解决Adobe Acrobat “正在纠偏图像,正在旋转图像,正在分解页面”问题
查看>>
php关于金额比较引发的问题(转)
查看>>
view
查看>>
javascript 对象实例
查看>>
部署hadoop2.7.2 集群 基于zookeeper配置HDFS HA+Federation
查看>>
携程Android App插件化和动态加载实践
查看>>
DotNet程序集解析
查看>>