如何使用jQuery查找特定类型(表)的最后一个孩子? [英] How to find last child of particular type (table) using jQuery?

查看:129
本文介绍了如何使用jQuery查找特定类型(表)的最后一个孩子?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设我有以下结构:

 < div id =main> 
< table>
< tbody>
< tr>
< td>
< div>
< table>
< tbody>
< tr>
< td>
< div>< table>上次表格< / table>< / div>
< / td>
< / tr>
< / tbody>
< / table>
< / div>
< / td>
< / tr>
< / tbody>
< / table>
< / div>

如何找到最后一张表?



  $(#main table:last)解决方案



let's say I have the following stucture:

  <div id="main">
    <table> 
       <tbody>
          <tr>
            <td>
               <div>
                 <table> 
                   <tbody>
                      <tr>
                        <td>
                           <div><table>Last table here</table></div>
                        </td>
                      </tr>
                   </tbody>
                 </table>
               </div>
             </td>
          </tr>
       </tbody>
    </table>
  </div>

How to find that very last table?

解决方案

Try the following:

$("#main table:last")

这篇关于如何使用jQuery查找特定类型(表)的最后一个孩子?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆