一、trim空格
<SCRIPT LANGUAGE="JavaScript"> <!-- //出处:网上搜集 //made by yaosansi 2005-12-02 //For more visit http://www.yaosansi.com // Trim() , Ltrim() , RTrim() String.prototype.Trim = function() { return this.replace(/(^\s*)|(\s*$)/g, ""); } String.prototype.LTrim = function() { return this.replace(/(^\s*)/g, ""); } String.prototype.RTrim = function() { return this.replace(/(\s*$)/g, ""); } //--> </SCRIPT>
下面来我们来看看Js脚本中"/s表示什么"
\s 匹配任何空白字符,包括空格、制表符、换页符等等。等价于 [ \f\n\r\t\v]。
二、扩展String操作之 replaceAll
String.prototype.replaceAll = function(regExp, repText){ return this.replace(new RegExp(regExp,"g"),repText); }
朋友的网站 http://woods2010.cn.alibaba.com/ 专业电子器件代购