扫码一下
查看教程更方便
Javascript String repeat 方法字符串复制指定次数。
语法如下:
string.repeat(count)
count - 必需,设置要复制的次数。
返回复制指定次数并连接在一起的字符串。
所有主流浏览器都支持 repeat 方法。
<html>
<head>
<title>JavaScript String repeat Method</title>
</head>
<body>
<p>点击按钮显示复制连接后的字符串。</p>
<button onclick="myFunction()">点我</button>
<p id="demo"></p>
<p><strong>注意:</strong> IE 11 及更早版本不支持 repeat() 方法 。</p>
<script>
function myFunction() {
var str = "Jiyik";
document.getElementById("demo").innerHTML = str.repeat(2);
}
</script>
</body>
</html>
输出结果:
JiyikJiyik