2021-05-18

jQuery 事件机制
1,绑定多个事件
bind() on()向被选元素添加一个或多个事件处理程序,以及当事件发生时运行的函数
bind(“时间类型”,事件处理程序)
例:
$("#header1").bind(“dblclick”, function(){
$(this).css(" background_color",“blue”);
)}
绑定多个事件,用对象
$(#header).on({
mouseover(){
$(this).css(“background-color”,“blue”);
},
Mouseout() {
$(this).css(“background-color”,“black”);
})

2。委托事件delegate()方法,为指定的元素

上一篇:[AGC014E] Blue and Red Tree


下一篇:IT帮助台KPI系列之:服务中断损失