jquery的each是什么函数
4 回答
慕妹3146593
TA贡献1820条经验 获得超9个赞
遍历一个jQuery对象,为每个匹配元素执行一个函数。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <ul> <li>foo</li> <li>bar</li> </ul>
$( "li" ).each(function( index ) { console.log( index + ": "" + $(this).text() ); });
//或者一个数组,集合,map $.each(集合,function(){ console.log( 集合.name+ ": "" +集合.age ); }); |
温温酱
TA贡献1752条经验 获得超4个赞
function jump(){
$("input[type='text']").each(function (i){
var _val=$(this).val();
if(_val=='2'){
return ; //跳循环加入要接收判断return true或false,其
}
})
}
-
- 4 回答
- 0 关注
- 1149 浏览
添加回答
举报
0/150
提交
取消