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.
我有一个名为 price 的字段,现在如何通过 java 脚本验证该字段?它只需要整数值和点。它可能带小数点或不带小数点。例如 200,200.00 两者都是有效的。我该怎么做?
有很多方法可以实现这一目标。
在不使用任何第三方库的情况下,我建议使用正则表达式。
用于验证价格的可能模式是
\d[\d\,\.]+
这是一个关于使用正则表达式来验证 java-script 中的字段的教程
教程
希望这可以帮助