javascript – 取消jQuery中的击键

前端之家收集整理的这篇文章主要介绍了javascript – 取消jQuery中的击键前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以(跨浏览器兼容)取消用户完成后的击键(例如在文本框上)

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

$('.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,'');
});
原文链接:https://www.f2er.com/jquery/150077.html

猜你在找的jQuery相关文章