$("body").on("keyup","#cardNum",function(){
var $this = $(this);
$this.val($this.val().replace(/\s/g,'').replace(/(\d{4})(?=\d)/g,"$1 "));
});
格式化银行卡号
最新推荐文章于 2024-08-24 07:35:15 发布

$("body").on("keyup","#cardNum",function(){
var $this = $(this);
$this.val($this.val().replace(/\s/g,'').replace(/(\d{4})(?=\d)/g,"$1 "));
});