为String扩展trim方法
String.prototype.trim = function(){
//return this.replace(/(^\s*)|(\s*$)/g, ""); //去 与' '空格 return this.replace(/(^\s*)|(\s*$)/g, "").replace(/(^( )*)|(( )*$)/g, "");}
使用JQuery提供的trim()方法
$.trim(str);
posted on 2013-01-04 15:21 菜鸟的春天 阅读(317) 评论(0) 收藏 举报
博客园 © 2004-2025 浙公网安备 33010602011771号 浙ICP备2021040463号-3