gpt4 book ai didi

javascript 阻止默认的 keyup

转载 作者:行者123 更新时间:2023-11-28 06:56:21 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/32536377/

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