如何使文本字段只接受数字值?如果我按一个字母或符号,文本字段不应该被填写,它应该只允许数字.
有没有办法这样做?
解决方法
在服务器端验证数值:
class SomeModel validates :some_column,:numericality => {:only_integer => true} end
在客户端,通过javascript https://github.com/ruoso/jquery-regex-mask-plugin添加一个输入掩码
$('#some_input').regexMask(/^\d+$/);