function randomID () {
_random = function(min, max) {
if (max == null) {
max = min;
min = 0;
}
return min + Math.floor(Math.random() * (max - min + 1));
};
return _random(100000, 999999) + '' + new Date().getTime().toString().substr(3);
}
2024-01-15 07:57:10
function randomID () {
_random = function(min, max) {
if (max == null) {
max = min;
min = 0;
}
return min + Math.floor(Math.random() * (max - min + 1));
};
return _random(100000, 999999) + '' + new Date().getTime().toString().substr(3);
}