gpt4 book ai didi

javascript防止keyup的默认值

转载 作者:可可西里 更新时间:2023-11-01 02:29:19 25 4
gpt4 key购买 nike

我有以下代码:

$(document).on('keyup', 'p[contenteditable="true"]', function(e) {
if(e.which == 13) {
e.preventDefault();
$(this).after('<p contenteditable = "true"></p>');
$(this).next('p').focus();
} else if((e.which == 8 || e.which == 46) && $(this).text() == "") {
e.preventDefault();
alert("Should remove element.");
$(this).remove();
$(this).previous('p').focus();
};
});

我想阻止按下某个键时的默认操作。 preventDefault 适用于 keypress 但不适用于 keyup。有没有办法防止 $(document).on('keyup') 的默认值?

最佳答案

没有。 keyup 在默认操作后触发。

keydownkeypress 是您可以防止默认设置的位置。
如果这些没有停止,则会发生默认情况并触发 keyup

关于javascript防止keyup的默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16052592/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com