Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 extjs 号码字段。我可以在其中输入数字 0-9 和点(。)。我怎样才能避免这个点呢。我只需要整数。请给我所需的正则表达式。
实际上有一个配置属性 anumberfield可以做到这一点,所以你可以像这样指定字段:
numberfield
{ xtype: 'numberfield', allowDecimals: false }
/^\d+$/是您要求的正则表达式。
/^\d+$/
如果您需要捕获它,请尝试/^(\d+)$/
/^(\d+)$/