JavaScript 参考手册
JavaScript Array 属性 构造器
一个新的数组的方法,将数组值转为大写
源代码:
点击运行 »
<p id="demo">点击按钮创建数组,并调用新建的 ucase() 方法, 最后显示结果。</p> <button onclick="myFunction()">点我</button> <script> Array.prototype.myUcase = function() { for (i = 0; i < this.length; i++) { this[i] = this[i].toUpperCase(); } } function myFunction() { var fruits = ["Banana", "Orange", "Apple", "Mango"]; fruits.myUcase(); var x = document.getElementById("demo"); x.innerHTML = fruits; } </script>
运行结果:
点击运行 »