以下代码是什么意思?

时间:2016-08-03 10:33:28

标签: javascript jquery

我不明白这段代码的作用:

result={
'0101': 2,
'0103': 1,
'0105': 2} 

(我从zurb foundation dropdown插件中获取此代码)

.bind(this);

它与jQuery 3兼容吗? http://jquery.com/upgrade-guide/3.0/#deprecated-bind-and-delegate

1 个答案:

答案 0 :(得分:0)

bind会将匿名函数中的this设置为jQuery提供的this

考虑一下:

(function() {
    console.log(this); // "foo"
}.bind("foo"))();

See the MDN documentation for more info ...

jQuery.bind()