javaScript事件物件
阿新 • • 發佈:2021-10-26
事件物件,是封裝有觸發的事件資訊的一個JAvaScript物件。
如何獲取javascript事件?
在給元素繫結事件的時候,在事件的function(even【事件 】)引數列表中新增一個引數,這個引數名,我們習慣取名為even。
這個even就是javascript傳遞參事件處理函式的事件物件
比如:
1.原生javascript獲取事件物件
window.onload = function(){
document.getElementById("ID").onclick = function(event){
console.log(event);
}
}
2.jQuery程式碼獲取事件物件
$(functin(){
$("#ID").click(function(event){
console.log(event);
});
});
3.使用bind同時對多個事件繫結同一個函式。
$("#ID").bind("mouseover mouseout",function(){
if(event.type==mouseover){
console.log(滑鼠移入);
}
else if(event.type == mouseout){
console.log(滑鼠移出);
}
});