使用jquery獲取指定列的方法:1.新建html項目,引入jquery;2.創建table表格;3.通過標簽名獲取表格對象,使用find()方法獲取指定列;
具體步驟如下:
1.首先,新建一個html項目,并在項目中引入jquery;
<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>
2.引入jquery后,在項目中創建一個table表格;
<table><tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>
3.最后,table表格創建好后,通過標簽名獲取表格對象,在使用find()方法即可獲取指定的列;
$(function(){console.log($("table tr").find("td:eq(0)")); //獲取表格的第一列
console.log($("table tr").find("td:eq(2)")); //獲取表格的第三列
});