call和apply的使用方法
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<div id="div1">click1</div>
<div id="div2">click2</div>
</body>
</html>
<script type="text/javascript">
//call和apply的使用方法
var oDiv1=document.getElementById("div1")
oDiv1.onclick=fn1;
var oDiv2=document.getElementById("div2").onclick=function(){fn1.apply(oDiv1)}
function fn1(){
alert(this.innerHTML)
}
//第一个含义:让fn立即运行,第二个含义让fn1的this关键字指向apply方法的第一个参数。
//call方法和apply一样,参数稍有点不同。
</script>
详细(30分钟以后):http://online.zhufengpeixun.cn/viewer.do?courseId=121848