我的问题是:
我有一个文本框,这个文本框是强制性的,只能接受数字。
在js中,我可以看到有数字验证,问题是我不知道如何使用它。
我只知道如何通过放入文本框字段< class =“required”>
那么,如何添加一个验证条件来只接受数字。
感谢名单
$("#myform").validate({ rules: { amount: { required: true,digits: true } } });
http://docs.jquery.com/Plugins/Validation/Methods/digits