##本教學操作環境:windows7系統、jquery3.2.1版本,Dell G3電腦。#推薦:jquery處理事件的方法:1、註銷事件處理程序,代碼為【$('*').unbind();】;2、觸發事件【trigger();】;3、自訂事件,程式碼為【$('div').click(function(){$.event.trigg】。
jquery處理事件的方法:
#事件處理程序的簡單註冊
//单击任意div时,使其背景变成黄色
$('div').click(function(){ $(this).css({backgroundColor:'yellow'}); });
//toggle(), 将多个事件处理程序函数绑定到单击事件, 按顺序一次调用一个函数;
$('div').toggle(function(){this.innerText='0'},function(){this.innerText='1'},function(){this.innerText='2'},);
//hover(), 用来给mouseenter 和 mouseleave事件注册事件处理函数
第一个参数是mouseenterHandler , 第二个参数是mouseleaveHandler,
如果mouseenterHandler 与mouseleaveHandler相同, 可以合并,只学一个Handler函数
bind();// 最简单的使用bind方法
$('div').bind('click','牛逼的bind()',function(event){this.innerText = event.data});
unbind()$(’*’).unbind() ; //从所有元素中移除所有的jQuery事件处理程序
#自訂事件
//用户单击div , 广播一个自定义事件what事件;
$('div').bind('what',function(event){console.log(event.type)});
$('div').click(function(){$.event.trigger('what')});
##### #相關學習推薦:js影片教學
以上是jquery怎麼處理事件的詳細內容。更多資訊請關注PHP中文網其他相關文章!