script?src=""?type="text/javascript"/script
目前創(chuàng)新互聯(lián)已為近1000家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)絡(luò)空間、網(wǎng)站托管維護(hù)、企業(yè)網(wǎng)站設(shè)計(jì)、煙臺(tái)網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶(hù)導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶(hù)和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。
pre
script
var?obj={name:"abc",type:"p"};
$.each(obj,function(k,v){
//這里是處理?obj?的函數(shù)
document.writeln(k+':'+v);
})
//$.each($("div"),function(k,v){})
//$("div").each(function(index,?element)?{?});
//我知道的就這兩種用法
/script
/pre
首先了解一下遍歷,遍歷就是對(duì)集合中的每一個(gè)元素一個(gè)個(gè)走一遍(也許表達(dá)的不夠貼切)。
像這樣
var tmp={1,2,3,4,5,6,7,8,9,10};
for(var i=0;itmp.length;i++)
{
alert(tmp[i]);
}
這就叫遍歷了,意思就是這個(gè)意思
像$("ul li").each(function(){
alert($(this).text());
});
這樣的遍歷,其實(shí)就是對(duì)所有頁(yè)面里的li元素集合一一遍歷
$('.item').each( function(i, e){
//i為元素的索引,從0開(kāi)始,
//e為當(dāng)前處理的元素
});
注:都使用jQuery了,就不要用for循環(huán)遍歷元素了,用each方法遍歷,方便快捷。
擴(kuò)展資料:
Java 數(shù)組的遍歷,for循環(huán)的使用
/*多行注釋的快捷鍵:Ctrl+shift+/
快速格式化代碼快捷鍵:Ctrl+shift+f
自動(dòng)導(dǎo)入一個(gè)包:Ctrl+shift+o
*/
package
test_1;public class Day_2 {
public static void main(String args[]) {
//一個(gè)九九乘法表的實(shí)現(xiàn)
int c = 0;
for (int a = 1; a = 9; a++) {
for (int b = 1; b = a; b++) {
c = a * b;
System.out.printf("%d*%d=%d ?",b,a,c);
}
System.out.println();
}
// 遍歷數(shù)組的方法
// 方法1:
int arr[] = new int[3];
for (int a = 0; a arr.length; a++) {
System.out.println(arr[a]);
}
//方法2:
for (int a : arr) {
System.out.println(a);
}
參考資料來(lái)源:for循環(huán)-百度百科
使用 each?方法, 假設(shè)你的?jQuer?元素是 el ,?大概代碼是:
$(el).each(function(index,el){
console.log( $(el).attr('id') );
})
each?是 jQuery?提供的遍歷方法,第一個(gè)參數(shù)是索引,第二個(gè)參數(shù)是遍歷對(duì)象的值。
table
class="table
table-hover"
id="test123"
tr
th
width="45"選擇/th
th
width="100"駕校名稱(chēng)/th
th
width="100"合作駕校名稱(chēng)/th
th
width="100"申請(qǐng)時(shí)間/th
th
width="100"申請(qǐng)狀態(tài)/th
th
width="100"操作/th
/tr
tr
tdinput
type="checkbox"
name="id"
value="1"
//td
td中大駕校/td
td瀟湘駕校/td
td2016-04-15
14:40:20/td
td
class="tablestate"未處理/td
tda
class="change
button
border-blue
button-little
update"
href="#"修改申請(qǐng)狀態(tài)/a/td
/tr
tr
tdinput
type="checkbox"
name="id"
value="1"
//td
td中大駕校/td
td瀟湘駕校/td
td2016-04-15
14:40:20/td
td
class="tablestate"未處理/td
tda
class="change
button
border-blue
button-little
update"
href="#"修改申請(qǐng)狀態(tài)/a/td
/tr
/table
擴(kuò)展資料:
遍歷同胞:
siblings():被選中時(shí)找到自己的兄弟姐妹,寫(xiě)法有siblings(所有的兄弟姐妹)和siblings(“同級(jí)的兄弟姐妹”)。
next():被選中時(shí)找到自己的下級(jí),寫(xiě)法有
nextAll(找到所有的下級(jí))和next(“找到下一個(gè)元素”)和nextuntil("被選中的元素的范圍內(nèi)的元素")。
prev(),
prevAll()
以及
prevUntil()
方法的工作方式與上面的方法類(lèi)似,只不過(guò)方向相反:它們返回的是前面的同胞元素(在
DOM
樹(shù)中沿著同胞元素向后遍歷,而不是向前)。
first():返回被選中的第一元素
,寫(xiě)法
$("div
p").first().css("樣式")
。
last():被選中的最后一個(gè)元素,寫(xiě)法
$("div
p").last().css(”樣式“)
。
eq():返回被選中元素中有索引的元素,索引號(hào),是從0開(kāi)始不是從1開(kāi)始比如tr.eq(0).id
==data.eq[i-1].id
或者
tr[0].id
=
data[i-1].id。
filter():刪除真正意義上的過(guò)濾,寫(xiě)法
$("div
").filter("span").hide()
。
not():就是跟filter()相反的用法。
如下所示:
tbody
id="already_question_list"
tr
td?php
echo
$val['unique_number'];
?/td
td?php
echo
$val['year'].'-'.$val['series'];
?/td
td?php
echo
$val['content']
?/td
td?php
echo
$val['knowledges']
?/td
td?php
echo
$val['last_admin'];
?/td
td
input
type="button"
class="btn"
value="-"
data-score="?php
echo
$val['score'];
?"
onclick='remove_selected(this);'/\
input
type="hidden"
name="question_numbers[]"
value="?php
echo
$val['unique_number'];
?"/
/td
/tr
/tbody
script
var
leng
=
$("#already_question_list
tr").length;
var
filter_numbs
=
new
Array();
for(var
i=0;
i=leng;
i++)
{
numberStr
=
$("#already_question_list
tr").eq(i).find("td:first").html();
filter_numbs.push(numberStr);
}
/script
以上就是小編為大家?guī)?lái)的jQuery
獲取遍歷獲取table中每一個(gè)tr中的第一個(gè)td的方法全部?jī)?nèi)容了,希望大家多多支持腳本之家~