JS文本框每隔4个数字加一个空格,银行卡号文本框

<input type="text" onkeypress="return (function(key,that){return (key>47&&key<58) && ((that.value.length%5==0)?that.value+=' ':1)})(event.keyCode,this)" />

demo:

上一篇:tenserflow models包的安装 123


下一篇:线程同步 Lock接口