码迷,mamicode.com
首页 > 移动开发 > 详细

银行卡和手机号占位符

时间:2017-04-17 16:47:12      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:格式   插件   body   initial   content   方法   占位符   javascrip   银行卡   

银行卡

技术分享

手机号

技术分享

HTML

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title> 
        <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=yes" /> 
        <script type="text/javascript" src="js/jquery-1.8.3.min.js"></script>
    </head>
    <body>
        <input type="text" name="bankNumber" id="bankNumber"/>
    </body>
</html>
<script src="js/cutNumber.js"></script>
<script>
    $("#bankNumber").cutNumber({type:"phone"}); 
</script>

JS

/*
	模拟手机和银行卡号间隔效果插件 
    如果银行卡 传参 {type:"bank"}
    如果是手机 传参 {type:"phone"}

 */
;(function ($) {
     	$.fn.extend({
         "cutNumber": function (options) { 
         	if (!isValid(options))
                return this;
            //使用jQuery.extend 覆盖插件默认参数
            var opts = $.extend({}, options);

            //如果是银行使用,会执行444格式
            if(opts.type =="bank"){
            	$(this).prop({maxlength:23});
            	return this.on("keyup",function(){
             	   this.value =this.value.replace(/\s/g,‘‘).replace(/\D/g,‘‘).replace(/(\d{4})(?=\d)/g,"$1 ");
               })
            }else if(opts.type =="phone"){
            	$(this).prop({maxlength:13});
             	return this.on("keyup",function(){
             	   this.value =this.value.replace(/\s/g,‘‘).replace(/\D/g,‘‘).replace(/(\d{3})(?=\d)/,‘$1 ‘).replace(/(\d{4})(?=\d)/,‘$1 ‘);
               })
 			
         	}else{
         		return this.on("keyup",function(){
         			this.value = this.value;
         		})
         	}
        }
     });

     //私有方法,检测参数是否合法
    function isValid(options) {
        return !options || (options && typeof options === "object") ? true : false;
    }
})(window.jQuery);

  

银行卡和手机号占位符

标签:格式   插件   body   initial   content   方法   占位符   javascrip   银行卡   

原文地址:http://www.cnblogs.com/binmengxue/p/6723598.html

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