我有一个jQuery函数,如下所示:
function unlock_reservation_columns(resid) {
$('.unlock-columns').click( function(event) {
event.preventDefault();
$(this).closest('tr').find('.columns-locked').removeClass('columns-locked');
$(this).html('<i class="fa fa-lock"></i> Lock Columns');
$(this).attr('class', 'lock-columns');
new PNotify({
title: 'We have unlocked this reservation..',
text: 'Reservation Unlocked',
type: 'success'
});
var url = $(this).attr("href");
var url_id = url.replace(/[^0-9]/g, '')
$.get(url, function (data) {
var confirm_changes = confirm('Do you wish to edit unlocked information?');
if (confirm_changes) {
window.location.href = '/reservations/database/edit/' + url_id;
}
else {
location.reload()
return false;
}
});
});
});
<a class="unlock-columns" href="<?php echo $row->unlock_url; ?>"><i class="fa fa-unlock"></i> Unlock Columns</a>
“unlock-columns”按钮位于Datatable自定义列内。现在,只有初始化页面时,此按钮才能正常工作。我在表格中排序后。 (数据顺序)并单击它不起作用的按钮..就像排序后它停止工作。任何想法为什么?
答案 0 :(得分:4)
使用委派的事件处理程序
$('#tableId').on('click', '.unlock-columns', function(event) {
代替。因为现在你只是在初始化时将点击处理程序附加到可见行,而不是稍后注入的行(如分页,排序等)。