码迷,mamicode.com
首页 > 其他好文 > 详细

输入框输入联动

时间:2018-04-04 16:47:49      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:val   NPU   log   function   javascrip   script   fun   test   class   

当输入序号并且是10位数的序号后才能输入姓名

<ul>
    <li>
        <span>户号</span >
        <input id = "testNo" type = "number" placeholder = "请输入" >
    </li>
    <li>
        <span>姓名</span >
        <input id = "testName" type = "text" placeholder = "请输入" >
    </li>
</ul>

  

 $("#testNo").focus();
    $("#testNo").blur(function () {
        if ($(this).val() != "") {
            if (!(/^[1-9]\d{9}$/.test($(this).val()))) {
                $("#testName").val("");
                $("#testNo").focus();
                console.log("客户编号10位数字,请重填");
            }
        } else {
            $("#testNo").focus();
            console.log("请优先输入客户编号");
        }
    });

  

输入框输入联动

标签:val   NPU   log   function   javascrip   script   fun   test   class   

原文地址:https://www.cnblogs.com/daHai007/p/8717971.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!