Home >Web Front-end >JS Tutorial >JS determines whether the form input is empty (sample code)_javascript skills
function trim(s) {
var count = s.length;
var st = 0; // start
var end = count-1; // end
if (s == "") return s;
while (st < count) {
if (s.charAt(st) == " ")
st ;
else
break ;
}
while (end > st) {
if (s.charAt(end) == " ")
end --;
else
break;
}
return s.substring(st,end 1);
}
return true;
}