欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

比較簡(jiǎn)單實(shí)用的使用正則三種版本的js去空格處理方法

 更新時(shí)間:2007年11月18日 20:57:10   作者:  
分別去字符串前后,左邊,右邊空格 
復(fù)制代碼 代碼如下:

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,"")} 

相關(guān)文章

最新評(píng)論