gpt4 book ai didi

javascript - 在 jQuery 中取消击键

转载 作者:数据小太阳 更新时间:2023-10-29 05:13:53 26 4
gpt4 key购买 nike

是否有可能(跨浏览器兼容)在用户完成击键后(例如在文本框上)取消

我当前使用的代码在显示击键后编辑文本框值:

$('.number').keypress(function() {
this.value = this.value.replace(/[^0-9\.]/g, '');
});

最佳答案

$('.number').keypress(function() {
if ( this.value == 'foobar' ){
// "Cancel" keystroke
return false;
}
this.value = this.value.replace(/[^0-9\.]/g, '');
});

关于javascript - 在 jQuery 中取消击键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2944430/

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