posts - 41, comments - 15, trackbacks - 0, articles - 1
  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理
   $j.fn.numeral = function() {
        $j(this).css("ime-mode", "disabled");
        this.bind("keypress",function() {
            if (event.keyCode == 46) {
                if (this.value.indexOf(".") != -1) {
                    return false;
                }
            } else {
                return event.keyCode >= 46 && event.keyCode <= 57;
            }
        });
        this.bind("blur", function() {
            if (this.value.lastIndexOf(".") == (this.value.length - 1)) {
                this.value = this.value.substr(0, this.value.length - 1);
            } else if (isNaN(this.value)) {
                this.value = "";
            }
        });
        this.bind("paste", function() {
            var s = clipboardData.getData('text');
            if (!/\D/.test(s));
            value = s.replace(/^0*/, '');
            return false;
        });
        this.bind("dragenter", function() {
            return false;
        });
        this.bind("keyup", function() {
        if (/(^0+)/.test(this.value)) {
            this.value = this.value.replace(/^0*/, '');
            }
        });
    };

评论

# 呵呵呵  回复  更多评论   

2013-07-28 11:36 by 急急急
级经济环境

# re: jquery实现文本框只能输入数字函数[未登录]  回复  更多评论   

2014-06-04 18:29 by 1
1

只有注册用户登录后才能发表评论。


网站导航: