Я нашел эту простую функцию, чтобы вернуть 4 наиболее распространенных типа кредитных карт.
Будучи новичком в jQuery, какой плагин jQuery можно использовать для отображения типа кредитной карты в качестве типа пользователя в номере кредитной карты в поле ввода?
function creditCardTypeFromNumber(num) {
// first, sanitize the number by removing all non-digit characters.
num = num.replace(/[^\d]/g,'');
// now test the number against some regexes to figure out the card type.
if (num.match(/^5[1-5]\d{14}$/)) {
return 'MasterCard';
} else if (num.match(/^4\d{15}/) || num.match(/^4\d{12}/)) {
return 'Visa';
} else if (num.match(/^3[47]\d{13}/)) {
return 'AmEx';
} else if (num.match(/^6011\d{12}/)) {
return 'Discover';
}
return 'UNKNOWN';
}
Спасибо!