1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <script> function getCaretPosition(obj) { var result = 0; if ('selectionStart' in obj) { result = obj.selectionStart; } else { try{ var rng; if (obj.tagName == "textarea") { rng = event.srcElement.createTextRange(); rng.moveToPoint(event.x, event.y); } else { rng = document.selection.createRange(); } rng.moveStart("character", -event.srcElement.value.length); result = rng.text.length; }catch (e){ throw new Error(10,"asdasdasd") } } return result; } function setCaretPosition(tObj, sPos){ if(tObj && sPos !== undefined){ setTimeout(function(){ if(tObj.setSelectionRange){ tObj.setSelectionRange(sPos, sPos); tObj.focus(); }else if(tObj.createTextRange){ var rng = tObj.createTextRange(); rng.move('character', sPos); rng.select(); } }, 0); } } </script> <script src="./usejQuery/jquery-1.8.2.js"></script> <style type="text/css"> input{ width: 800px; height: 25px; } </style> </head> <body> <input id="card" type="text" value=""> <script> function autoSplit(ele, size) { var lastValue, posn, divisor, whiteRgx, splitRgx, isBackspace; lastValue = '' whiteRgx = /\s+/g; splitRgx = new RegExp('(\\d{' + size + '})(?!$)', 'g'); divisor = size + 1; $(ele).on('input propertychange', function (event) { var pos, str, propertyName, length, newValue; str = $(this).val(); propertyName = event.originalEvent.propertyName; if (propertyName && propertyName !== 'value' || lastValue == str) { return ; } pos = getCaretPosition(this); str = str.replace(whiteRgx, ''); length = str.length; newValue = str.replace(splitRgx, '$1 '); if (newValue.length <= lastValue.length) { if (pos % divisor === 0 && isBackspace) { pos -= 1; } else if (pos % divisor === size) { newValue = newValue.split(''); if (!isBackspace) { newValue.splice(pos + 1, 1); } else { newValue.splice(pos - 1, 1); pos -= 1; } newValue = newValue.join('').replace(whiteRgx, '').replace(splitRgx, '$1 '); } } else if (pos % divisor === 0) { pos += 1; } lastValue = newValue; $(this).val(newValue); setCaretPosition(this, pos); }); $(ele).on('keydown', function (event) { isBackspace = event.keyCode === 8; }); } autoSplit($('#card'), 4); </script> </body> </html>
|