//去掉字符串的空格
function removeAllSpace(str){
var localString = '';
for(var index = 0; index<str.length; index++)
if(str.charCodeAt(index)!= 32){
localString += str.charAt(index);
};
return localString;
}
function removeAllSpace(str){
var localString = '';
for(var index = 0; index<str.length; index++)
if(str.charCodeAt(index)!= 32){
localString += str.charAt(index);
};
return localString;
}