• JQuery 中each的使用方法


     

    JQuery中的each函数在1.3.2的官方文档中的描述如下:

    each(callback)

    以每一个匹配的元素作为上下文来执行一个函数。

    意味着,每次执行传递进来的函数时,函数中的this关键字都指向一个不同的DOM元素(每次都是一个不同的匹配元素)。而且,在每次执行函数时,都会给函数传递一个表示作为执行环境的元素在匹配的元素集合中所处位置的数字值作为参数(从零开始的整形)。返回 'false' 将停止循环 (就像在普通的循环中使用 'break')。返回 'true' 跳至下一个循环(就像在普通的循环中使用'continue')。

    而后面的callback 则是回调函数,指示遍历元素的时候应该赋予的操作。先看下面的一个简单的例子:

    迭代两个图像,并设置它们的 src 属性。注意:此处 this 指代的是 DOM 对象而非 jQuery 对象。

    HTML 代码:
    <img/><img/>
    jQuery 代码:
    $("img").each(function(i){
       
    this.src = "test" + i + ".jpg";
     });
    结果:
    [ 
    <img src="test0.jpg" /><img src="test1.jpg" /> 
    ]
    当然,在遍历元素的时候,jquery是允许自定义跳出的,请看示例代码:

    你可以使用 'return' 来提前跳出 each() 循环。

    HTML 代码:
    <button>Change colors</button>
    <span></span> 
    <div></div> 
    <div></div>
     
    <div></div> 
    <div></div>
    <div id="stop">Stop here</div> 
    <div></div>
     
    <div></div>
    <div></div>
    jQuery 代码:
    $("button").click(function(){
            $(
    "div").each(function(index,domEle){
                $(domEle).css(
    "backgroundColor","wheat");
                   
    if($(this).is("#stop")){
                     $(
    "span").text("在div块为#"+index+"的地方停止。");
                     
    return false;
                   }
                });

       或者这么写:

    $("button").click(function(){
                   $(
    "div").each(function(index){
                         $(
    this).css("backgroundColor","wheat");
                   
    if($(this).is("#stop")){
                          $(
    "span").text("在div块为#"+index+"的地方停止。");
                           
    return false;
                       }
    });

  • 相关阅读:
    Hadoop-03 基于Hadoop的JavaEE数据可视化简易案例(升级使用HBase存储结果集)
    Hadoop-02 基于Hadoop的JavaEE数据可视化简易案例
    Python03 变量
    Python01 VSCode开发环境和入门程序
    MyBatis01 Idea中搭建MyBatis开发环境
    Idea01 Idea2018中集成Tomcat9导致OutPut乱码
    MySQL-08 MySQL8.0新特性
    C11 C语言文件的读写
    C10 C语言数据结构
    C09 指针
  • 原文地址:https://www.cnblogs.com/scy251147/p/1801685.html
Copyright © 2020-2023  润新知