This article mainly introduces how JavaScript implements credit card verification. It involves javascript's Luhn algorithm verification skills and is very useful, for more information about how to use JavaScript to verify your credit card, see the example in this article. Share it with you for your reference. The specific analysis is as follows:
Here, the JavaScript version of the credit card verification code uses the Luhn Algorithm
Function isValidCreditCard (type, ccnum) {if (type = "Visa") {// Visa: length 16, prefix 4, dashes optional. var re =/^ 4 \ d {3 }-? \ D {4 }-? \ D {4 }-? \ D {4 }$/;} else if (type = "MC") {// Mastercard: length 16, prefix 51-55, dashes optional. var re =/^ 5 [1-5] \ d {2 }-? \ D {4 }-? \ D {4 }-? \ D {4 }$/;} else if (type = "Disc") {// Discover: length 16, prefix 6011, dashes optional. var re =/^ 6011 -? \ D {4 }-? \ D {4 }-? \ D {4 }$/;} else if (type = "AmEx") {// American Express: length 15, prefix 34 or 37. var re =/^ 3 [4, 7] \ d {13} $/;} else if (type = "Diners") {// Diners: length 14, prefix 30, 36, or 38. var re =/^ 3 [0, 6, 8] \ d {12} $/;} if (! Re. test (ccnum) return false; // Remove all dashes for the checksum // checks to eliminate negative numbers ccnum = ccnum. split ("-"). join (""); // Checksum ("Mod 10") // Add even digits in even length strings // or odd digits in odd length strings. var checksum = 0; for (var I = (2-(ccnum. length % 2); I <= ccnum. length; I + = 2) {checksum + = parseInt (ccnum. charAt (I-1);} // Analyze odd digits in even length strings // or even digits in odd length strings. for (var I = (ccnum. length % 2) + 1; I
I hope this article will help you design javascript programs.