摘要: zftest为要去除空格的字符串:去除所有空格: zftest= zftest.replace(/\s+/g,""); 去除两头空格: zftest= zftest.replace(/^\s+|\s+$/g,"");去除左空格:zftest=zftest.replace( /^\s*/, '');去除右空格:zftest=zftest.replace(/(\s*$)/g, ""); 阅读全文
posted @ 2012-03-04 11:11 东师理想--周枫 阅读(178) 评论(0) 推荐(0) 编辑