看板 Mesak
作者 標題 [JS] Jquery on off & live die
時間 2012年11月29日 Thu. PM 04:27:57
http://blog.timc.idv.tw/posts/deprecation-of-jquery-live-function/
http://www.jquery4u.com/jquery-functions/on-vs-live-review/
jQuery 1.7+ .on() vs .live() Review | jQuery4u
Here are is the code review of the .on() vs .live() jQuery functions, the main differences between, how they work and how to use them in jQuery 1.7. ...
Here are is the code review of the .on() vs .live() jQuery functions, the main differences between, how they work and how to use them in jQuery 1.7. ...
// 舊
$('#myid').bind(event, fn);
// 新 (改名字就好)$('#myid').on(event, fn);
// 舊$('#not_in_dom_yet').live(event, fn)
// 新$(document).on(event, '#not_in_dom_yet', fn);
--
※ 作者: mesak 時間: 2012-11-29 16:27:57
※ 編輯: mesak 時間: 2012-11-29 16:28:46
※ 看板: Mesak 文章推薦值: 0 目前人氣: 0 累積人氣: 180
回列表(←)
分享