/*去除指定代码前后的空格*/ function SetNoneSpace(Code) { return Code.replace(/(s*$)/g, "").replace(/(^s*)/g, ""); }