大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
script src="" type="text/javascript"/script
目前创新互联已为近1000家的企业提供了网站建设、域名、网络空间、网站托管维护、企业网站设计、烟台网站维护等服务,公司将坚持客户导向、应用为本的策略,正道将秉承"和谐、参与、激情"的文化,与客户和合作伙伴齐心协力一起成长,共同发展。
pre
script
var obj={name:"abc",type:"p"};
$.each(obj,function(k,v){
//这里是处理 obj 的函数
document.writeln(k+':'+v);
})
//$.each($("div"),function(k,v){})
//$("div").each(function(index, element) { });
//我知道的就这两种用法
/script
/pre
首先了解一下遍历,遍历就是对集合中的每一个元素一个个走一遍(也许表达的不够贴切)。
像这样
var tmp={1,2,3,4,5,6,7,8,9,10};
for(var i=0;itmp.length;i++)
{
alert(tmp[i]);
}
这就叫遍历了,意思就是这个意思
像$("ul li").each(function(){
alert($(this).text());
});
这样的遍历,其实就是对所有页面里的li元素集合一一遍历
$('.item').each( function(i, e){
//i为元素的索引,从0开始,
//e为当前处理的元素
});
注:都使用jQuery了,就不要用for循环遍历元素了,用each方法遍历,方便快捷。
扩展资料:
Java 数组的遍历,for循环的使用
/*多行注释的快捷键:Ctrl+shift+/
快速格式化代码快捷键:Ctrl+shift+f
自动导入一个包:Ctrl+shift+o
*/
package
test_1;public class Day_2 {
public static void main(String args[]) {
//一个九九乘法表的实现
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();
}
// 遍历数组的方法
// 方法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);
}
参考资料来源:for循环-百度百科
使用 each 方法, 假设你的 jQuer 元素是 el , 大概代码是:
$(el).each(function(index,el){
console.log( $(el).attr('id') );
})
each 是 jQuery 提供的遍历方法,第一个参数是索引,第二个参数是遍历对象的值。
table
class="table
table-hover"
id="test123"
tr
th
width="45"选择/th
th
width="100"驾校名称/th
th
width="100"合作驾校名称/th
th
width="100"申请时间/th
th
width="100"申请状态/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="#"修改申请状态/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="#"修改申请状态/a/td
/tr
/table
扩展资料:
遍历同胞:
siblings():被选中时找到自己的兄弟姐妹,写法有siblings(所有的兄弟姐妹)和siblings(“同级的兄弟姐妹”)。
next():被选中时找到自己的下级,写法有
nextAll(找到所有的下级)和next(“找到下一个元素”)和nextuntil("被选中的元素的范围内的元素")。
prev(),
prevAll()
以及
prevUntil()
方法的工作方式与上面的方法类似,只不过方向相反:它们返回的是前面的同胞元素(在
DOM
树中沿着同胞元素向后遍历,而不是向前)。
first():返回被选中的第一元素
,写法
$("div
p").first().css("样式")
。
last():被选中的最后一个元素,写法
$("div
p").last().css(”样式“)
。
eq():返回被选中元素中有索引的元素,索引号,是从0开始不是从1开始比如tr.eq(0).id
==data.eq[i-1].id
或者
tr[0].id
=
data[i-1].id。
filter():删除真正意义上的过滤,写法
$("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
以上就是小编为大家带来的jQuery
获取遍历获取table中每一个tr中的第一个td的方法全部内容了,希望大家多多支持脚本之家~