var str = "abcd "; 
str.trim(); 
报语法错误 
解决方法如下: 
str = str.replace(/^\s+|\s+$/g,"");