JavaScript 函数 Apply


方法重用

通过 apply() 方法,您能够编写用于不同对象的方法。


JavaScript apply() 方法

apply() 方法与 call() 方法非常相似:在本例中,personfullName 方法被应用person1

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>JavaScript 函数</h1>
  5. <p>在此示例中,person 的 fulllName 方法在 person1 上<b>应用</b></p>
  6. <p id="demo">
  7. <script>
  8. var person = {
  9. fullName: function() {
  10. return this.firstName + " " + this.lastName;
  11. }
  12. }
  13. var person1 = {
  14. firstName:"Bill",
  15. lastName: "Gates"
  16. }
  17. var x = person.fullName.apply(person1);
  18. document.getElementById("demo").innerHTML = x;
  19. </script>
  20. </body>
  21. </html>

call() 和 apply() 之间的区别

不同之处是:

  • call() 方法分别接受参数。
  • apply() 方法接受数组形式的参数。

如果要使用数组而不是参数列表,则 apply() 方法非常方便。


带参数的 apply() 方法

apply() 方法接受数组中的参数:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>JavaScript 函数</h1>
  5. <p>在此示例中,person 的 fulllName 方法在 person1 上<b>应用</b></p>
  6. <p id="demo">
  7. <script>
  8. var person = {
  9. fullName: function(city, country) {
  10. return this.firstName + " " + this.lastName + "," + city + "," + country;
  11. }
  12. }
  13. var person1 = {
  14. firstName:"埃隆",
  15. lastName: "马斯克"
  16. }
  17. var x = person.fullName.apply(person1, ["西雅图", "美国"]);
  18. document.getElementById("demo").innerHTML = x;
  19. </script>
  20. </body>
  21. </html>

call() 方法对比:

实例
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>JavaScript 函数</h1>
  5. <p>此例调用 person 的 fullName 方法,在 person1 上使用它:</p>
  6. <p id="demo">
  7. <script>
  8. var person = {
  9. fullName: function(city, country) {
  10. return this.firstName + " " + this.lastName + "," + city + "," + country;
  11. }
  12. }
  13. var person1 = {
  14. firstName:"埃隆",
  15. lastName: "马斯克"
  16. }
  17. var person2 = {
  18. firstName:"马克",
  19. lastName: "扎克伯格"
  20. }
  21. var x = person.fullName.call(person1, "西雅图", "美国");
  22. document.getElementById("demo").innerHTML = x;
  23. </script>
  24. </body>
  25. </html>

在数组上模拟 max 方法

您可以使用 Math.max() 方法找到(数字列表中的)最大数字:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>JavaScript Math.max()</h1>
  5. <p>此例返回数字参数列表中的最大数字:</p>
  6. <p id="demo">
  7. <script>
  8. document.getElementById("demo").innerHTML = Math.max(1,2,3);
  9. </script>
  10. </body>
  11. </html>

由于 JavaScript 数组没有 max() 方法,因此您可以应用 Math.max() 方法。

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>JavaScript apply()</h1>
  5. <p>此例返回数字数组中的最大数:</p>
  6. <p id="demo">
  7. <script>
  8. document.getElementById("demo").innerHTML = Math.max.apply(null, [1,2,3]);
  9. </script>
  10. </body>
  11. </html>

第一个参数(null)无关紧要。在本例中未使用它。

这些例子会给出相同的结果:

实例1
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>JavaScript apply()</h1>
  5. <p>此例返回数字数组中的最大数:</p>
  6. <p id="demo">
  7. <script>
  8. document.getElementById("demo").innerHTML = Math.max.apply(Math, [1,2,3]);
  9. </script>
  10. </body>
  11. </html>
实例2
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>JavaScript apply()</h1>
  5. <p>此例返回数字数组中的最大数:</p>
  6. <p id="demo">
  7. <script>
  8. document.getElementById("demo").innerHTML = Math.max.apply(" ", [1,2,3]);
  9. </script>
  10. </body>
  11. </html>
实例3
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>JavaScript apply()</h1>
  5. <p>此例返回数字数组中的最大数:</p>
  6. <p id="demo">
  7. <script>
  8. document.getElementById("demo").innerHTML = Math.max.apply(0, [1,2,3]);
  9. </script>
  10. </body>
  11. </html>

JavaScript 严格模式

在 JavaScript 严格模式下,如果 apply() 方法的第一个参数不是对象,则它将成为被调用函数的所有者(对象)。在“非严格”模式下,它成为全局对象。

分类导航