zoukankan      html  css  js  c++  java
  • jquery each函数 break和continue功能

    jquery each函数 break和continue功能

    幸运的是另一个突破,持续一个jquery循环方式。你可以打破在函数返回一个jquery参数虚假循环。一个可以继续执行只是在做不指定返回值或返回值以外的任何其他虚假的回报。

     $('.container').each(function(i){
         if($(this).attr('name')=="continue"){
              return ;//实现continue功能
         }else if($(this).attr('name')=="break"){
              return false;//实现break功能
         }
    })

    来看看jquery each函数

    在each里想使用return true给这个function返回时,其实只是让each继续执行而以
    连each都没有中断,所以function也就不能return了


    jquery中each非常好用,除常用它取代网页特效的for循环

     function methodone(){
    ....
    $.each(array,function(){
    if(条件成立){
    return true;
    }
    });
    ....
    }

    break continue实例


     continue :return true;
    break :return false;
    直接return也会跳出jquery。

    所以,就可以写出下面的代码:

     $('li').each(function(index){
    if(index==2)return true;
    if(index==4)return false;
    $(this).css教程("border","1px red solid");
    });
  • 相关阅读:
    接口的经典使用方法
    多态的程序例子
    log4j常用配置过程
    log4j.properties对于web app摆放的位置
    MySQL优化实例
    No sql 相关
    yii直接执行sql
    android NDK JNI设置自己的log输出函数
    android web 网址收集
    WebKit加载网页的流程
  • 原文地址:https://www.cnblogs.com/fumj/p/2816388.html
Copyright © 2011-2022 走看看