📅  最后修改于: 2022-03-11 15:04:23.533000             🧑  作者: Mango
jQuery("input[type='text'][name='quantity']").change(function() {
if (parseInt($(this).val(),10) > 40) {
alert("To order quantity greater than 40 please use the contact form.");
this.value == '';
/* or with jQuery: $(this).val(''); */
$(this).focus();
return false;
}
});