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

前端之家收集整理的这篇文章主要介绍了用jQuery获取table中行id和td值的实现代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

<% 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值的实现代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/jquery/48616.html

猜你在找的jQuery相关文章