博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery操作table中的tr,td的方法双击dblclick attr parent id原创
阅读量:6851 次
发布时间:2019-06-26

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

<script src="${base}/common_res/js/jquery.js" type="text/javascript"></script>

<script type="Text/JavaScript">

$(document).ready(function(){

    $(".bbs tr td").dblclick(function() {

     alert("aa");

     alert($(this).html());

     alert($(this).attr('id'));

     alert($(this).parent('tr').attr('id'));     

    });

})

</script>

</HEAD>

<BODY>

<table class="bbs">

<tr id='5'><th id='name5'>88</th><th id='name51'>881</th></tr>

<tr id='0'><td id='name0'>5555双击试试</td></tr>

<tr id='1'><td id='name1'>6655双击试试</td></tr>

</table>

</BODY>

</HTML>

原创jquery操作table中的tr,td的方法双击dblclick attr parent id

jQuery 操作 table td attr

本文转自左正博客园博客,原文链接:http://www.cnblogs.com/soundcode/archive/2012/02/15/2352195.html,如需转载请自行联系原作者

你可能感兴趣的文章
dubbo源码分析-服务端发布流程-笔记
查看>>
阿里云发布Apsara SA系列混合云存储阵列
查看>>
GoJS教程:链接模版
查看>>
QListWidget方式显示缩略图
查看>>
金三银四:蚂蚁金服JAVA后端面试题及答案之二面
查看>>
Ubuntu 外网不通解决方案
查看>>
OSChina 周六乱弹 —— 历史总是惊人的相似
查看>>
MySQL 大小写
查看>>
Lync 2013部署图片赏析-证书服务安装配置
查看>>
HTML5 本地缓存 (web存储)
查看>>
tomcat redis session共享(包含redis安全设置)
查看>>
iptables中DNAT、SNAT和MASQUERADE的作用
查看>>
kvm命令学习记录
查看>>
小菜鸡进阶之路-First week
查看>>
ORACLE 10g SYSAUX表空间快速增长之WRH$_ACTIVE_SESSION_HISTORY篇
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
子数组的和的最大值(包括升级版的首尾相连数组)
查看>>
LeetCode - Nth Highest Salary
查看>>
9.ORM数据访问
查看>>