Danh mục: Thủ thuật WordPress

jQuery.fn.live(), .browser, .size(), fn.load() không còn được dùng nữa

jQuery.fn.live(), .browser, .size(), fn.load() không còn được dùng nữa

$(document).on('event', 'selector', function() {}); Thay thế..live() $('selector').on('event', 'selector', function() {}); Thay thế..delegate() $('selector').on('event', function() {}); Thay thế..bind() Tài liệu: http://api.jquery.com/on/ http://api.jquery.com/off/ Trang cho hiển thị cách chuyển đổi sang :live()on() http://api.jquery.com/live/ Bạn có thể xem tất cả các …