表格操作 & each meodth

$("table tr td.a").each(function() {

var value = $(this).text();

alert(value);

} );

1. 獲取 table 表格 所有 td 且屬性 class 為 "a" 的有所 td 元素

2. 使用each方法獲取每個元素後 , 取得每個元素值

http://www.cssrain.cn/article.asp?id=970



沒有留言: