如果按下删除或退格键,我想删除一些内容可编辑的段落。我为此编写了以下脚本:
$(document).on('keyup', 'p[contenteditable="true"]', function(e) {
if(e.which == 13) {
e.preventDefault();
$(this).after('<p contenteditable = "true">New Paragraph</p>');
$(this).next('p').focus();
} else if((e.which == 8 || e.which == 46) && $(this).text() == "") {
e.preventDefault();
$(this).remove();
$(this).previous('p').focus();
};
});
我想在删除后专注于上一段,但我不相信我能做到这一点,因为this
不再存在。我也试过把focus
之前的,remove
但它似乎改变了this
.