作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
var sampleFunction = function() {
var self = this;
console.log(self.somevalue);
console.log(?); //output : 2
};
sampleFunction().bind(this,2);
如何在该示例函数内访问此值 2。
最佳答案
你需要像这样 create a new function
var boundFunction = sampleFunction.bind(this);
boundFunction(2)
像这个答案一样使用 function.call 通常是最简单的
sampleFunction.call(this, 2);
关于javascript - 如何将两个值绑定(bind)并获取到函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20368340/
我是一名优秀的程序员,十分优秀!