gpt4 book ai didi

javascript - javascript/jquery 中的 uniqid()?

转载 作者:数据小太阳 更新时间:2023-10-29 03:58:33 26 4
gpt4 key购买 nike

这个函数在 javascript 中的等价物是什么:

http://php.net/manual/en/function.uniqid.php

基本上我需要生成一个随机 ID,如下所示:a4245f54345 并以字母字符开头(因此我可以将其用作 CSS id)

最佳答案

我一直在用这个...

我完全按照在 PHP 中使用它的方式使用它。两者返回相同的结果。

function uniqid(prefix = "", random = false) {
const sec = Date.now() * 1000 + Math.random() * 1000;
const id = sec.toString(16).replace(/\./g, "").padEnd(14, "0");
return `${prefix}${id}${random ? `.${Math.trunc(Math.random() * 100000000)}`:""}`;
};

关于javascript - javascript/jquery 中的 uniqid()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4872380/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com