jQuery載入動態html table內容到網頁後,載入內容的hover或是click等事件無法觸發

原寫法(一般寫法): 

 $("#button").click(function () {
   
to do something...
  
});


因為網頁在載入內容時,selector沒有辨法attach到我們事後動態載入html item的event handler

請改成以下寫法:

 $("#button").live("click",function( ){
    to do something...
 });

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 湯瑪的吳 的頭像
    湯瑪的吳

    安達利機車行

    湯瑪的吳 發表在 痞客邦 留言(0) 人氣()