Last active
November 23, 2020 04:16
-
-
Save imbyc/0b6a83425fa650f68070221590b6bf49 to your computer and use it in GitHub Desktop.
[JS 输入框4个字符一分割] https://jsbin.com/koleleh/edit?html,js,output
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function character(s){ | |
var memt = 16; | |
s=s.replace(/\-/g,''); | |
var len=s.length; | |
var z=Math.ceil(len/4); | |
var zz=parseInt(memt)+parseInt(z)-1; | |
document.getElementById("sn").setAttribute("maxlength",zz); | |
var ss=''; | |
for (var i = 0; i < z; i++) { | |
ss+=s.substr(4*i,4); | |
if(i!=(z-1)){ss+='-';} | |
}; | |
return ss; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment