Skip to content

Instantly share code, notes, and snippets.

@imbyc
Last active November 23, 2020 04:16
Show Gist options
  • Save imbyc/0b6a83425fa650f68070221590b6bf49 to your computer and use it in GitHub Desktop.
Save imbyc/0b6a83425fa650f68070221590b6bf49 to your computer and use it in GitHub Desktop.
[JS 输入框4个字符一分割] https://jsbin.com/koleleh/edit?html,js,output
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