码迷,mamicode.com
首页 > 编程语言 > 详细

javascript中bind函数的作用

时间:2014-09-26 18:13:18      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   java   ar   sp   

javascript的bind的作用

bubuko.com,布布扣
 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <meta charset="utf-8">
 5         <style>
 6             button {background-color:#0f0;}
 7         </style>
 8     </head>
 9     <body>
10         <button id="button"> 按钮 </button>
11         <input type="text">
12         <script>
13             var button = document.getElementById("button");
14                 button.onclick = function() {
15                     alert(this.id); // 弹出button
16                 };
17                 //可以看出上下文的this 为button
18         </script>
19     </body>
20 </html>
View Code

此时加入bind

bubuko.com,布布扣
1             var text = document.getElementById("text");
2             var button = document.getElementById("button");
3                 button.onclick = function() {
4                     alert(this.id); // 弹出button
5                 }.bind(text);
6                 //可以看出上下文的this 为button
View Code

此时会发现this改变为text

函数字面量里也适用,目的是保持上下指向(this)不变。

bubuko.com,布布扣
 1 var obj = {
 2             color: "#ccc",        
 3             element: document.getElementById(‘text‘),
 4                     events: function() {
 5                 document.getElementById("button").addEventListener("click", function(e) {
 6                     console.log(this);
 7                 this.element.style.color = this.color;
 8                }.bind(this))
 9         return this;
10     },
11     init: function() {
12         this.events();
13     }
14 };
15    obj.init();
View Code

此时点击按钮text里的字会变色。可见this不为button而是obj。

bind()的方法在ie,6,7,8中不适用,需要扩展通过扩展Function prototype可以实现此方法。

bubuko.com,布布扣
 1  if (!Function.prototype.bind) {
 2 
 3         Function.prototype.bind = function(obj) {
 4             var slice = [].slice, args = slice.call(arguments, 1), self = this, nop = function() {
 5             }, bound = function() {
 6                 return self.apply(this instanceof nop ? this : (obj || {}),
 7                         args.concat(slice.call(arguments)));
 8             };
 9 
10             nop.prototype = self.prototype;
11 
12             bound.prototype = new nop();
13 
14             return bound;
15         };
16     }
View Code

此时可以看到ie6,7,8中也支持bind()。

slice = Array.prototype.slice,

array = Array.prototype.slice.call( array, 0 );

将类似数组转换为数组

javascript中bind函数的作用

标签:style   blog   http   color   io   os   java   ar   sp   

原文地址:http://www.cnblogs.com/mole/p/3994669.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!