Home > Web Front-end > JS Tutorial > body text

JavaScript code for Mac address verification_javascript tips

WBOY
Release: 2016-05-16 17:16:36
Original
1193 people have browsed it

验证规则:

1. Broadcast mac address (FF:FF:FF:FF::FF:FF:)

2. IPv4 & IPv6 multicast mac address

3. Numeric character

code list :

复制代码 代码如下:

function isValidMacAddress(address) { 
   var c = ''; 
   var i = 0, j = 0; 

    if ((address.toLowerCase() == 'ff:ff:ff:ff:ff:ff') || (address.toLowerCase() == '00:00:00:00:00:00')) { 
         alert('error'); 
         return false; 
   } 

   var addrParts = address.split(':'); 
   if (addrParts.length != 6) { 
       alert('error'); 
        return false; 
   } 
   for (i = 0; i < 6; i ){ 
        if (addrParts[i] == ''){ 
             alert('error'); 
             return false; 
        } 
   } 

   if (addrParts[i].length != 2) { 
        alert('error'); 
        return false; 
   } 
   for (j = 0; j < addrParts[i].length; j ) { 
        c = addrParts[i].toLowerCase().charAt(j); 
        if ((c >= '0' && c <= '9') || (c >= 'a' && c <='f')) { 
             continue; 
        } else { 
             alert('error'); 
             return false; 
        } 
   } 

   if ((parseInt(addrParts[0], 16) % 2) == 1) { 
        alert('error'); 
        return false; 
   } 

   return true; 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template