微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

用jQuery获取table中行id和td值的实现代码

用jQuery获取table中行id和td值的实现代码

rush:js;"> <%@ page language="java" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); %> 点击 <Meta content="IE=edge" http-equiv="X-UA-Compatible">
<<a href="https://www.jb51.cc/tag/Meta/" target="_blank" class="keywords">Meta</a> http-equiv="pragma" content="no-cache"&gt;
<<a href="https://www.jb51.cc/tag/Meta/" target="_blank" class="keywords">Meta</a> http-equiv="cache-control" content="no-cache"&gt;
<<a href="https://www.jb51.cc/tag/Meta/" target="_blank" class="keywords">Meta</a> http-equiv="expires" content="0"&gt;

<<a href="https://www.jb51.cc/tag/Meta/" target="_blank" class="keywords">Meta</a> http-equiv="keywords" content="keyword1,keyword2,keyword3"&gt;
<<a href="https://www.jb51.cc/tag/Meta/" target="_blank" class="keywords">Meta</a> http-equiv="description" content="This is my page"&gt;
<jsp:include page="/demo/base/js_bootstrap.jsp" />
<script type="text/javascript"&gt;
$(function(){
  //用jQuery<a href="https://www.jb51.cc/tag/huoqu/" target="_blank" class="keywords">获取</a>table中td值
  $("#mytable td").click(function(){
    alert("table td值:"+$(this).text());
  });

  //jQuery<a href="https://www.jb51.cc/tag/huoqu/" target="_blank" class="keywords">获取</a>table中点击位置所在行的id
  $("#mytable td").click(function() {
    //td的id 
    alert($(this).attr("id"));
    //tr的id 
    alert($(this).parent().attr("id"));
  });
});
</script>

以上这篇用jQuery获取table中行id和td值的实现代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐