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,'');
});

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...