jquery遍歷table

關於Jquery;相信你們已經很熟悉了,我最近的項目運用到關於Jquery的遍歷事件;權當總結下: ui

遍歷Table this

<table  id="thistab"> spa

<tr>
<td class="t_l_bg">3</td>
<td><span class="t_trash"></span></td>
<td>
<input type="text" class="ui_input" /> 事件

</td>
<td>
<input type="text" class="ui_input" /></td>
<td>
<input type="text" class="ui_input sumnum" /></td>
<td>
<input type="text" class="ui_input chagePrice" /></td>
<td>
<input type="text" class="ui_input chageAmount" /></td>
<td>
<input type="text" class="ui_input" /></td>
<td>
<input type="text" class="ui_input" /></td>
</tr> input

<tr>
<td class="t_l_bg">3</td>
<td><span class="t_trash"></span></td>
<td>
<input type="text" class="ui_input" /> io

</td>
<td>
<input type="text" class="ui_input" /></td>
<td>
<input type="text" class="ui_input sumnum" /></td>
<td>
<input type="text" class="ui_input chagePrice" /></td>
<td>
<input type="text" class="ui_input chageAmount" /></td>
<td>
<input type="text" class="ui_input" /></td>
<td>
<input type="text" class="ui_input" /></td>
</tr> table

</table> function

 

關於上面的table;我簡單創建的 class

  $("#thistab tr").each(function () {}); select

這個事件是遍歷表thistab中全部的tr

 

 

var leg = $("#thistab tr").length - 1
$("#thistab tr:gt(0):lt(" + leg + ")").each(function () {
temp = $(this).children("td").eq(6).children("input").val();
if (temp.length > 0) {
sumPrice += Number(temp);
}
});

代碼 $("#thistab tr").length是獲取table的行數

gt(0)表明是大於第一行,從第二行起

lt(10)表明小於;

只有遍歷到了行以後,才能去遍歷行下面的TD;或者td下的input;

$(this).children("td").eq(6).children("input").val(); 這段代碼邊上,當前行下第七列中的input的value值;

 

遍歷checkbox

$('input[type="checkbox"][name="chk_list"]:checked').each(function () {
alert($(this).val());
});

全選/全不選

 $('input[name="chk_list"]').attr("checked", this.checked);

 

遍歷select

$('select[name="selectlist"] option:selected').each(function () { alert($(this).val()+"-"+$(this).text()) });

相關文章
相關標籤/搜索