txtaccnew = txtacc.filter(function(s) {
if(s && s.trim()) {
if(s.length >=3 && s.length <= 15) {
return s;
}
}
});
记录php学习日志
txtaccnew = txtacc.filter(function(s) {
if(s && s.trim()) {
if(s.length >=3 && s.length <= 15) {
return s;
}
}
});