/*
* 去掉开头和结尾的space, tab, form feed, and line feed (same as [\f\n\r\t\v]).
*/
function Trim(str){
return str.replace(/(^\s*)|(\s*$)/g, "");
}
/*
* 去掉开头和结尾的space, tab, form feed, and line feed (same as [\f\n\r\t\v]).
*/
function Trim(str){
return str.replace(/(^\s*)|(\s*$)/g, "");
}