博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
javascript中bind函数的作用
阅读量:5794 次
发布时间:2019-06-18

本文共 1778 字,大约阅读时间需要 5 分钟。

javascript的bind的作用

1  2  3      4         
5 8 9 10 11 12 19 20
View Code

此时加入bind

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

此时会发现this改变为text

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

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可以实现此方法。

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 );

将类似数组转换为数组

转载于:https://www.cnblogs.com/mole/p/3994669.html

你可能感兴趣的文章
Windows phone 8 学习笔记
查看>>
linux并发连接数:Linux下高并发socket最大连接数所受的各种限制
查看>>
详解区块链中EOS的作用。
查看>>
我的友情链接
查看>>
mysql-error 1236
查看>>
sshd_config设置参数笔记
查看>>
循序渐进Docker(一)docker简介、安装及docker image管理
查看>>
jsp页面修改后浏览器中不生效
查看>>
大恶人吉日嘎拉之走火入魔闭门造车之.NET疯狂架构经验分享系列之(四)高效的后台权限判断处理...
查看>>
信号量实现进程同步
查看>>
Spring4-自动装配Beans-通过构造函数参数的数据类型按属性自动装配Bean
查看>>
win10.64位wnmp-nginx1.14.0 + PHP 5. 6.36 + MySQL 5.5.59 环境配置搭建 结合Thinkphp3.2.3
查看>>
如何查看python selenium的api
查看>>
Python_Mix*random模块,time模块,sys模块,os模块
查看>>
iframe刷新问题
查看>>
数据解码互联网行业职位
查看>>
我所见的讲的最容易理解,逻辑最强的五层网络模型,来自大神阮一峰
查看>>
js实现复选框的操作-------Day41
查看>>
chrome浏览器开发者工具之同步修改至本地
查看>>
debian7 + wheezy + chromium + flashplayer
查看>>