当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Apply()用法及代码示例


apply()方法用于编写方法,可以用在不同的对象上。它与函数 call() 不同,因为它将参数作为数组。

用法:

apply()

返回值:它返回给定函数的方法值。

示例 1:此示例说明了不带参数的 apply() 函数。

Javascript


let student = {
    details: function () {
        return this.name + this.class;
    }
}
let stud1 = {
    name: "Dinesh",
    class: "11th",
}
let stud2 = {
    name: "Vaibhav",
    class: "11th",
}
let x = student.details.apply(stud2);
console.log(x);

输出:

Vaibhav
11th

示例 2:这个例子说明了apply()函数有参数。

Javascript


let student = {
    details: function (section, rollnum) {
        return this.name + this.class
            + " " + section + rollnum;
    }
}
let stud1 = {
    name: "Dinesh",
    class: "11th",
}
let stud2 = {
    name: "Vaibhav",
    class: "11th",
}
let x = student.details.apply(stud2, ["A", "24"]);
console.log(x);

输出:

Vaibhav
11th A
24

支持的浏览器:

  • Chrome 1 及以上版本
  • 边 12 及以上
  • 火狐浏览器1及以上版本
  • Internet Explorer 5.5 及更高版本
  • Opera 4 及以上版本
  • Safari 1 及以上版本


相关用法


注:本文由纯净天空筛选整理自riarawal99大神的英文原创作品 JavaScript Apply() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。