JavaScript 函数 Apply 方法
JavaScript 函数 Apply
方法重用
通过 apply()
方法,您能够编写用于不同对象的方法。
JavaScript apply() 方法
apply()
方法与 call()
方法非常相似:
在本例中,person
的 fullName
方法被应用到 person1
:
示例代码:
var person = {
fullName: function() {
return this.firstName + " " + this.lastName;
}
}
var person1 = {
firstName: "Bill",
lastName: "Gates",
}
person.fullName.apply(person1); // 将返回 "Bill Gates"
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 函数</h1>
<p>在此示例中,person 的 fulllName 方法在 person1 上<b>应用</b>:</p>
<p id="demo"></p>
<script>
var person = {
fullName: function() {
return this.firstName + " " + this.lastName;
}
}
var person1 = {
firstName:"Bill",
lastName: "Gates"
}
var x = person.fullName.apply(person1);
document.getElementById("demo").innerHTML = x;
</script>
</body>
</html>
运行结果:
Javascript 函数 在此示例中,person 的 fulllName 方法在 person1 上应用: Bill Gates
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
call() 和 apply() 之间的区别
不同之处是:
call()
方法分别接受参数。
apply()
方法接受数组形式的参数。
如果要使用数组而不是参数列表,则 apply()
方法非常方便。
带参数的 apply() 方法
apply()
方法接受数组中的参数:
示例代码:
var person = {
fullName: function(city, country) {
return this.firstName + " " + this.lastName + "," + city + "," + country;
}
}
var person1 = {
firstName:"Bill",
lastName: "Gates"
}
person.fullName.apply(person1, ["Oslo", "Norway"]);
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 函数</h1>
<p>在此示例中,person 的 fulllName 方法在 person1 上<b>应用</b>:</p>
<p id="demo"></p>
<script>
var person = {
fullName: function(city, country) {
return this.firstName + " " + this.lastName + "," + city + "," + country;
}
}
var person1 = {
firstName:"Bill",
lastName: "Gates"
}
var x = person.fullName.apply(person1, ["Seatle", "USA"]);
document.getElementById("demo").innerHTML = x;
</script>
</body>
</html>
运行结果:
Javascript 函数 在此示例中,person 的 fulllName 方法在 person1 上应用: Bill Gates,Seatle,USA
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
与 call()
方法对比:
示例代码:
var person = {
fullName: function(city, country) {
return this.firstName + " " + this.lastName + "," + city + "," + country;
}
}
var person1 = {
firstName:"Bill",
lastName: "Gates"
}
person.fullName.call(person1, "Oslo", "Norway");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 函数</h1>
<p>此例调用 person 的 fullName 方法,在 person1 上使用它:</p>
<p id="demo"></p>
<script>
var person = {
fullName: function(city, country) {
return this.firstName + " " + this.lastName + "," + city + "," + country;
}
}
var person1 = {
firstName:"Bill",
lastName: "Gates"
}
var person2 = {
firstName:"Steve",
lastName: "Jobs"
}
var x = person.fullName.call(person1, "Seatle", "USA");
document.getElementById("demo").innerHTML = x;
</script>
</body>
</html>
运行结果:
Javascript 函数 此例调用 person 的 fullName 方法,在 person1 上使用它: Bill Gates,Seatle,USA
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
在数组上模拟 max 方法
您可以使用 Math.max()
方法找到(数字列表中的)最大数字:
示例代码:
Math.max(1,2,3); // 会返回 3
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Math.max()</h1>
<p>此例返回数字参数列表中的最大数字:</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = Math.max(1,2,3);
</script>
</body>
</html>
运行结果:
Javascript Math.max() 此例返回数字参数列表中的最大数字: 3
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
由于 JavaScript 数组没有 max() 方法,因此您可以应用 Math.max()
方法。
示例代码:
Math.max.apply(null, [1,2,3]); // 也会返回 3
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript apply()</h1>
<p>此例返回数字数组中的最大数:</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = Math.max.apply(null, [1,2,3]);
</script>
</body>
</html>
运行结果:
Javascript apply() 此例返回数字数组中的最大数: 3
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
第一个参数(null)无关紧要。在本例中未使用它。
这些例子会给出相同的结果:
示例代码:
Math.max.apply(Math, [1,2,3]); // 也会返回 3
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript apply()</h1>
<p>此例返回数字数组中的最大数:</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = Math.max.apply(Math, [1,2,3]);
</script>
</body>
</html>
运行结果:
Javascript apply() 此例返回数字数组中的最大数: 3
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
示例代码:
Math.max.apply(" ", [1,2,3]); // 也会返回 3
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript apply()</h1>
<p>此例返回数字数组中的最大数:</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = Math.max.apply(" ", [1,2,3]);
</script>
</body>
</html>
运行结果:
Javascript apply() 此例返回数字数组中的最大数: 3
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
示例代码:
Math.max.apply(0, [1,2,3]); // 也会返回 3
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript apply()</h1>
<p>此例返回数字数组中的最大数:</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = Math.max.apply(0, [1,2,3]);
</script>
</body>
</html>
运行结果:
Javascript apply() 此例返回数字数组中的最大数: 3
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
JavaScript 严格模式
在 JavaScript 严格模式下,如果 apply()
方法的第一个参数不是对象,则它将成为被调用函数的所有者(对象)。在“非严格”模式下,它成为全局对象。