公告:1.恭喜本站微信硬件蓝牙教程阅读总数突破100万次,微信jsapi阅读总数突破10万次... 2.友情交换/给本站留言

案例归档:  js 生成32位UUID—实现代码

var createUUID = (function (uuidRegEx, uuidReplacer) {  
        return function () {  
            return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(uuidRegEx, uuidReplacer).toUpperCase();  
        };  
    })(/[xy]/g, function (c) {  
        var r = Math.random() * 16 | 0,  
            v = c == "x" ? r : (r & 3 | 8);  
        return v.toString(16);  
    });

代码中的

xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx

可以更改为

xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx

就是32位