我已经为数量编写了一个正则表达式,他们可以订购的最大数量是每个(夏季、秋季、冬季)500 个。表达式是——
var chkquantity = ^([1-9]?\d|[1-4]\d{2}|500)$/
我不确定测试是否正确-
if ((chkquantity.test(quantity)== false){
alertmsg = alertmsg + "Please limit each magazine to 500 copies or less:" + "\n";
}
?