摘要:
事件绑定bind(type [,data],fn)对指定元素添加事件绑定。同时绑定多个事件:1 $('#foo').bind('click', fn1=function() {2 //...3 }).bind('click',fn2=function()4 {5 //...6 }).bind('click',fn3=function()7 {8 //...9 });同时绑定多种事件,每个事件类型用空格分隔:1 $('#foo').bind('mouseenter mouseleave', funct 阅读全文
posted @ 2011-03-04 18:07 张贺 阅读(663) 评论(0) 推荐(1) 编辑