$.validator.addMethod('AZ09_', function (value) { return /^[a-zA-Z0-9.-_]+$/.test(value); }, 'Only letters, numbers, and _-. are allowed');
当我使用像 test-123 它仍然会触发,就好像连字符无效一样。我试过了 \- 和 --
test-123
\-
--