我想知道任何人都可以在代码中为我解释这一行。
$(this).bind('click', {src: $(this).attr('href')}, function (e){
//commented out since it's irrelevant
});
这是我的理解:
将函数绑定到 $(this) 的点击事件。e 参数也被传递给函数。然而,这对我来说没有意义的中间部分
{src: $(this).attr('href')}
这是做什么的?我尝试用谷歌搜索冒号在 jquery 中的作用。但是我得到了 li:first 结果。