码迷,mamicode.com
首页 > Web开发 > 详细

JS生成GUID方法

时间:2020-09-24 21:23:44      阅读:43      评论:0      收藏:0      [点我收藏+]

标签:rand   tostring   xxx   uid   guid   ret   fun   return   style   

1 function guid() {
2     return ‘xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx‘.replace(/[xy]/g, function (c) {
3         var r = Math.random() * 16 | 0,
4             v = c == ‘x‘ ? r : (r & 0x3 | 0x8);
5         return v.toString(16);
6     });
7 }

 

JS生成GUID方法

标签:rand   tostring   xxx   uid   guid   ret   fun   return   style   

原文地址:https://www.cnblogs.com/LTQ151/p/13720077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!