Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在提交表单上生成一个唯一代码(例如:xxxxxxxxxxx xx)。完成注册表中的信息后,应用程序将在另一个表格的输出中生成一个唯一代码。
使用 javascript math.random() 是您最直接的选择:
var random = (Math.random()).toString().split('.')[1]
有一些已经回答您的问题的帖子 -
生成唯一 ID
或者你可以参考这里 - http://www.javapractices.com/topic/TopicAction.do?Id=56