js 随机生成18位id
作者:
曹锦花 | 来源:发表于
2019-06-29 20:28 被阅读1次 function generateUUID() {
var d = new Date().getTime();
if (window.performance && typeof window.performance.now === "function") {
d += performance.now(); //use high-precision timer if available
}
var uuid = 'xxxxxxxxxyxxxxxxxx'.replace(/[xy]/g, function (c) {
var r = (d + Math.random() * 16) % 16 | 0;
d = Math.floor(d / 16);
return (c == 'x' ? r : (r & 0x3 | 0x8)).toString(16);
});
console.log(uuid);
// return uuid;
}
generateUUID();
本文标题:js 随机生成18位id
本文链接:https://www.haomeiwen.com/subject/kbxmcctx.html
网友评论