2012-06-26 61 views
2

嗨誰能幫我綁定究竟如何理解傳遞例如一個事件,綁定屬性 - 識別活動

$("#example_button").bind("click",function(){ 
    alert("Event is clicked"); 
}) 

$("#example_button").bind("mouseover",function(){ 
    alert("Event is mouseover"); 
}) 

究竟是如何結合的數字(標識)的情況下....我的意思是有什麼辦法可以識別事件......

回答

3

見jQuery的事件對象的type attribute

$("a").click(function(event) { 
    alert(event.type); // "click" 
}); 
+0

這裏我們要說的$( 「A」)點擊() - >但我不知道。瞭解可點擊或鼠標懸停的事件 – Coolenough