我不明白这段代码的作用:
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
答案 0 :(得分:0)
bind
会将匿名函数中的this
设置为jQuery提供的this
。
考虑一下:
(function() {
console.log(this); // "foo"
}.bind("foo"))();
See the MDN documentation for more info ...
与jQuery.bind()
有无。