了
解
紅
點(diǎn)
最
新
動
態(tài)
和
行
業(yè)
資
訊
大致看了網(wǎng)上的方法,基本是不全面,不能正常使用其他按鍵,例如退格鍵,全選…
1 2 3 4 5 6 7 8 | !function () { document.getElementById('bankCard').onkeyup = function (event) { var v = this.value; if(/S{5}/.test(v)){ this.value = v.replace(/s/g, '').replace(/(.{4})/g, "$1 "); } }; }(); |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> </head> <body> <input type="text" id="J_BankCard"/> <script src="http://static.ydcss.com/libs/jquery/1.11.2/jquery.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(/(.{4})/g, "$1 ")); }); }(); </script> </body> </html> |
3.1、本文有任何錯誤,或有任何疑問,歡迎留言說明。宜昌微信小程序,微信官網(wǎng),微信二次開發(fā)定制-紅點(diǎn)互動