我正在尝试为用户输入编写一个取消按钮。用户可以在双击项目后对其进行编辑,并且取消按钮将允许用户取消操作。
代码的双击部分效果很好,因为出现了一个带有取消按钮的文本输入框。但是现在由于 DOM 发生了变化,jQuery 不再选择新元素,因此当单击取消按钮时,不会触发事件。为了说明,代码如下:
<div id="main">
<ul class="todoList">
<li id="todo-1" class="todo">
<div class="text">New Todo Item. Doubleclick to Edit
</div>
<div class="actions"> <a href="#" class="edit">Edit</a></div>
</li>
</ul>
</div>
var currentTODO;
$('.todo').on('dblclick', function () {
$(this).find('a.edit').click();
});
$('.todo a').on('click', function (e) {
e.preventDefault();
currentTODO = $(this).closest('.todo');
});
$('.todo a.edit').on('click', function () {
var container = currentTODO.find('.text');
if (!currentTODO.data('origText')) {
// Saving the current value of the ToDo so we can
// restore it later if the user discards the changes:
currentTODO.data('origText', container.text());
} else {
// This will block the edit button if the edit box is already open:
return false;
}
$('<input type="text">').val(container.text()).appendTo(container.empty());
container.append(
'<div class="editTodo">' +
'<a class="cancel" href="#">Cancel</a>' +
'</div>');
});
// The cancel edit link:
$('.cancel').on('click', function () {
alert("oops");
});
或在这里:http: //jsfiddle.net/S7f83/42/
因此,我的问题是,如何在 DOM 更改后“绑定”事件?非常感谢