程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> jquery-JQuery each的問題,怎麼得到第一行,第二列的值?

jquery-JQuery each的問題,怎麼得到第一行,第二列的值?

編輯:編程綜合問答
JQuery each的問題,怎麼得到第一行,第二列的值?
 <!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://labfile.oss.aliyuncs.com/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">

$(document).ready(function(){
    $("table tr:nth-child(1)").each(function (){
        alert($(this).text());
    });
});

</script>
</head>

<body>
<table>
  <tr><th>id</th><th>name</th><th>age</th></tr>
  <tr><td>1</td><td>Persion</td><td>100</td></tr>
  <tr><td>2</td><td>Gesion</td><td>200</td></tr>
  <tr><td>3</td><td>Adam</td><td>300</td></tr>
</table>
</body>
</html>

最佳回答:


想要單獨 100 像下面的

 $("table tr td:eq(2)").each(function (){
            alert($(this).text());
    });

想要100,200,300像下面的

 $("table tr").each(function (){
        $(this).find("td:eq(2)").each(function (){
            alert($(this).text());
        });
    });

想要name那一列的值eq()裡的值減1

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved