<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script src="../js/jquery.min.js"></script>
<div onclick="abc.bind(this)('red','#fff')">fffff</div>
<div onclick="abc.call(this,'yellow','red')">fffff</div>
<div onclick="abc.apply(this,['green','#fff'])">fffff</div>
<script>
function abc(color1,color2){
this.style.backgroundColor=color1
this.style.color=color2
}
</script>
</body>
</html>
一个call,apply,bind的例子
一个call,apply,bind的例子
一个call,apply,bind的例子
一个call,apply,bind的例子