• $(obj).index(this)与$(this).index()


      <ul>
            <li>one</li>
            <li>two</li>
            <li>three</li>
            <li>four</li>
        </ul>
    <script>
        //  $(this).index() 测试代码一
        $("li").on("click",function(){
            var index = $(this).index();
            console.log(index); // 依次点击li元素输出: 0,1,2,3
        })
        // $(obj).index(this) 测试代码二
        $("li").on("click",function(){
            var index = $("li").index(this);
            console.log(index); // 依次点击li元素输出: 0,1,2,3
    }) </script>

     执行两段脚本并依次点击li元素,都是输出: 0/1/2/3,在这个场景下,作用一样。

     var reg = /^[0-9]{5}$/i;
                var hasfour = true;
                $(".nocode").html("");
                $(".vcodetip").show();
                $("input[name='vcode']").each(function (i, item) {
                    if (!reg.test($(this).val())) { 
                        if ($(this).val().length <= 4) {
                            if (hasfour == true){//定位焦点到第一个未填完整
                                $(this).focus();
                                
                                hasfour = false;
                            }
                            $("div[class='vcodetip']").eq($(this).index() - 1).css("visibility", "visible");//显示提示
                        }
                        //return false;//确定是否所有未输入完成的都提示
                    }
    
                });
     <div class="Step1div">
                            <span style="56px;">防伪码:&#12288;</span>
                            <input id="code1" type="text" name='vcode' class="inputcode" style="font-size: 14px;" placeholder="第一组" maxlength="5">
                            <input id="code2" type="text" name='vcode' class="inputcode" style="font-size: 14px;" placeholder="第二组" maxlength="5">
                            <input id="code3" type="text" name='vcode' class="inputcode" style="font-size: 14px;" placeholder="第三组" maxlength="5">
                            <input id="code4" type="text" name='vcode' class="inputcode" style="font-size: 14px;" placeholder="第四组" maxlength="5">
                            <a href="javascript:void(0);" class="Nextbtn" style="color:white" onclick="getTelInfo()">下一步</a>
                        </div>
    
                        <div class="Step1div tip">
                            <span class="space">&#12288;&#12288;&#12288;:</span>
                            <div class="nocode"></div>
                            <div class="vcodetip">请输入5位验证码</div>
                            <div class="vcodetip">请输入5位验证码</div>
                            <div class="vcodetip">请输入5位验证码</div>
                            <div class="vcodetip">请输入5位验证码</div>
                        </div>
  • 相关阅读:
    JS原生带小白点轮播图
    JS原生轮播图
    Vue.js小案例(2)
    Vue.js小案例(1)
    Vuejs入门级简单实例
    Vue.js简单入门
    微信登录oauth2.0
    PHP四维数组、三维数组封装遍历
    常用linux命令30个
    好架构是进化来的,不是设计来的
  • 原文地址:https://www.cnblogs.com/zhangyouwu/p/11577608.html
Copyright © 2020-2023  润新知