String.prototype.padStart()
String
值的 padStart()
方法用另一个字符串填充此字符串(如果需要,可多次填充),直到结果字符串达到给定长度。填充是从该字符串的开头开始应用的。
¥The padStart()
method of String
values pads this string with another string (multiple times, if needed) until the resulting
string reaches the given length. The padding is applied from the start of this string.
Try it
语法
参数
¥Parameters
targetLength
-
填充当前
str
后生成的字符串的长度。如果该值小于或等于str.length
,则按原样返回str
。 padString
Optional-
用于填充当前
str
的字符串。如果padString
太长而无法留在targetLength
内,则会从末尾截断。默认值为 unicode "space" 字符 (U+0020)。
返回值
示例
基本示例
固定宽度字符串数字转换
规范
Specification |
---|
ECMAScript Language Specification # sec-string.prototype.padstart |
浏览器兼容性
BCD tables only load in the browser