Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

String.prototype.trimLeft()

非标准
该特性是非标准的,请尽量不要在生产环境中使用它!

概述

移除字符串左端的连续空白符.

语法

string.trimLeft()

描述

trimLeft方法移除原字符串左端的连续空白符并返回,trimLeft方法并不会直接修改原字符串本身.

示例

例子: 使用trimLeft

下面的例子输出了小写的字符串"foo  ":

var str = "   foo  ";

alert(str.length); // 8

str = str.trimLeft();
alert(str.length); // 5
document.write( str );

相关链接

文档标签和贡献者

 此页面的贡献者: teoli, ziyunfei
 最后编辑者: teoli,