码迷,mamicode.com
首页 > 其他好文 > 详细

轮播插件unsilder 源码解析(一)--之jquey的深入

时间:2016-12-31 13:27:13      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:function   --   tom   enter   trigger   .text   cti   events   解析   

//trigger
$(‘#foo‘).on(‘click‘, function() {
alert($(this).text());
});
$(‘#foo‘).trigger(‘click‘);
$(‘#foo‘).on(‘custom‘, function(event, param1, param2) {
alert(param1 + "\n" + param2);
});
$(‘#foo‘).trigger(‘custom‘, [‘Custom‘, ‘Event‘]);
var data = { id: 5, name: "张三" };
var events = {
"mouseenter": function(event){
$(this).html( "你好," + event.data.name + "!");
},
"mouseleave": function(event){
$(this).html( "再见!");
}
};
//为n5绑定mouseenter mouseleave两个事件,并为其传入附加数据data
$("body").on(events, "#n5", data);

轮播插件unsilder 源码解析(一)--之jquey的深入

标签:function   --   tom   enter   trigger   .text   cti   events   解析   

原文地址:http://www.cnblogs.com/heyinwangchuan/p/6239076.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!