PC6下载站

分类分类

String添加trimltrimrtrim

关注+2004-11-07作者:蓝点

利用Javascript中每个对象(Object)的prototype属性我们可以为Javascript中的内置对象添加我们自己的方法和属性。



  以下我们就用这个属性来为String对象添加三个方法:Trim,LTrim,RTrim(作用和VbScript中的同名函数一样)



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

}

  怎么样,简单吧,下面看一个使用的实例:



$#@60;script language=javascript$#@62;

String.prototype.Trim = function()

{

return this.replace(/(^\s*)|(\s*$)/g, "");

} 

 

var s = " leading and trailing spaces "; 

 

window.alert(s + " (" + s.length + ")"); 

 

s = s.Trim(); 

 

window.alert(s + " (" + s.length + ")"); 

 

$#@60;/script$#@62; 




展开全部

相关文章

更多+相同厂商

热门推荐

  • 最新排行
  • 最热排行
  • 评分最高
排行榜

    点击查看更多

      点击查看更多

        点击查看更多

        说两句网友评论

          我要评论...
          取消