🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### 返回值:Anythingevent.data ### *V1.1*概述 当前执行的处理器被绑定的时候,包含可选的数据传递给jQuery.fn.bind。 ### 示例 #### 描述: The description of the example. ##### jQuery 代码: ~~~ $("a").each(function(i) { $(this).bind('click', {index:i}, function(e){ alert('my index is ' + e.data.index); }); }); ~~~