js调用对象的函数,这里列举一下正常调用模式和call模式调用,例子如下
嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻
嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻
嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻
嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻
嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻嘻
代码实例
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
</head>
<body>
<div></div>
</body>
<script>
function Book(name){
this.name = name;
}
Book.prototype = {
getBook:function(name){
if(this.name==name){
return "恭喜你获得书本:"+name;
}else{
return "抱歉,没有找到你要的书";
}
}
}
//1、第一种调用方式
var book = new Book("厄夫游记");
var result = book.getBook("哈利波特");
alert(result);
//2、用call的方式调用
var result2 = book.getBook.call(book,"厄夫游记");
alert(result2);
</script>
</html>
二者的区别
调用者.函数(参数1,参数2,参数3) == 函数.call(调用者,参数1,参数2,参数3)