jquery如何獲取指定列

養(yǎng)魚(yú)的貓咪
248
2021-05-19 11:54:24

使用jquery獲取指定列的方法:1.新建html項(xiàng)目,引入jquery;2.創(chuàng)建table表格;3.通過(guò)標(biāo)簽名獲取表格對(duì)象,使用find()方法獲取指定列;

jquery如何獲取指定列

具體步驟如下:

1.首先,新建一個(gè)html項(xiàng)目,并在項(xiàng)目中引入jquery;

<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>

2.引入jquery后,在項(xiàng)目中創(chuàng)建一個(gè)table表格;

<table>

<tr>

<td></td>

<td></td>

</tr>

<tr>

<td></td>

<td></td>

</tr>

</table>

3.最后,table表格創(chuàng)建好后,通過(guò)標(biāo)簽名獲取表格對(duì)象,在使用find()方法即可獲取指定的列;

$(function(){

console.log($("table tr").find("td:eq(0)")); //獲取表格的第一列

console.log($("table tr").find("td:eq(2)")); //獲取表格的第三列

});

0