js随机生成mac地址的代码

console.log(make_mac().toUpperCase())

function make_mac(){
  var mac = make_mac_1();
  for(var i=0; i<4; i++){
    mac = mac + ':' + make_mac_1();
  }
  return mac;
}
function make_mac_1(){
  var n=Math.round(Math.random()*255);
  var n_hex=n.toString(16);
  if( n_hex.length==1 ){
    n_hex = '0' + n_hex;
  }
  return n_hex;
}

运行结果:AB:BE:CA:33:AD

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片快捷回复

    暂无评论内容