jQuery載入動態html table內容到網頁後,載入內容的hover或是click等事件無法觸發
原寫法(一般寫法):
$("#button").click(function () {
to do something...
});
因為網頁在載入內容時,selector沒有辨法attach到我們事後動態載入html item的event handler
請改成以下寫法:
$("#button").live("click",function( ){
to do something...
});
全站熱搜
留言列表