名站网址导航为大家免费提供关于网站编程方面的知识。
php生成随机唯一邀请码/优惠码 固定长度
- 本篇文章的具体介绍如下请大家仔细看
function () { document.getElementById('bankCard').onkeyup = function (event) { var v = this.value; if(/\S{5}/.test(v)){ this.value = v.replace(/\s/g, '').replace(/(\d{4})(?=\d)/g, "$1 "); } }; }(); |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> </head> <body> <input type="text" id="J_BankCard"/> <script src="http://res.wdphp.com/jquery/1.10.2/jquery.min.js"></script> <script> !function () { $('#J_BankCard').on('keyup mouseout input',function(){ var $this = $(this), v = $this.val(); /\S{5}/.test(v) && $this.val(v.replace(/\s/g,'').replace(/(\d{4})(?=\d)/g, "$1 ")); }); }(); </script> </body> </html> |
关于网站编程方面的知识就说道这里了,希望能够对大家有作用。,js,填写,银行,卡号,,,每隔,4位,数字,加,一个,空格