JavaScript Function call() 方法用于调用包含此值和单独提供的参数的函数。与 apply() 方法不同,它接受参数列表。
用法
function.call(thisArg, arg1,arg2,....,argn)
参数
thisArg- 它是可选的。为函数调用提供了 this 值。
arg1,arg2,...,argn - 它是可选的。它代表函数的参数。
返回值
它返回调用函数的结果,并提供此值和参数。
JavaScript 函数 call() 方法示例
例子1
让我们看一个简单的 call() 方法示例。
<script>
function Emp(id,name) {
this.id = id;
this.name = name;
}
function PermanentEmp(id,name) {
Emp.call(this,id,name);
}
document.writeln(new PermanentEmp(101,"John Martin").name);
</script>
输出:
John Martin
例子2
让我们看一个 call() 方法的例子。
<script>
function Emp(id,name) {
this.id = id;
this.name = name;
}
function PermanentEmp(id,name) {
Emp.call(this,id,name);
}
function TemporaryEmp(id,name) {
Emp.call(this,id,name);
}
var p_emp=new PermanentEmp(101,"John Martin");
var t_emp=new TemporaryEmp(201,"Duke William")
document.writeln(p_emp.id+" "+p_emp.name+"<br>");
document.writeln(t_emp.id+" "+t_emp.name);</script>
输出:
101 John Martin 201 Duke William
相关用法
- JavaScript Function bind()用法及代码示例
- JavaScript Function apply()用法及代码示例
- JavaScript Function toString()用法及代码示例
- JavaScript Function.displayName属性用法及代码示例
- JavaScript Uint8Array.of()用法及代码示例
- JavaScript BigInt.prototype.toString()用法及代码示例
- JavaScript DataView.getInt16()用法及代码示例
- JavaScript Symbol.keyFor()用法及代码示例
- JavaScript handler.has()用法及代码示例
- JavaScript JSON.stringify()用法及代码示例
- JavaScript Symbol.split属性用法及代码示例
- JavaScript TypedArray reverse()用法及代码示例
- JavaScript String slice()用法及代码示例
- JavaScript 正则 \n用法及代码示例
- JavaScript Math hypot()用法及代码示例
- JavaScript Set add()用法及代码示例
- JavaScript Array fill()用法及代码示例
- JavaScript Math abs()用法及代码示例
- JavaScript Date toISOString()用法及代码示例
- JavaScript DataView.getInt8()用法及代码示例
注:本文由纯净天空筛选整理自 JavaScript Function call() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。