JavaScript 参考手册
JavaScript fill() 方法
使用固定值填充数组
源代码:
点击运行 »
<p>点击按钮使用 “Mifengjc” 填充所有数组元素。</p> <button onclick="myFunction()">点我</button> <p id="demo"></p> <p><strong>注意:</strong> IE 11 及更早版本不支持 fill() 方法。</p> <script> var fruits = ["Banana", "Orange", "Apple", "Mango"]; document.getElementById("demo").innerHTML = fruits; function myFunction() { document.getElementById("demo").innerHTML = fruits.fill("Mifengjc"); } </script>
运行结果:
点击运行 »