生成时间戳随机数
Posted romanticcrystal
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了生成时间戳随机数相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title></title> <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <script> var No = 0; var key = new Date().getTime();//生成时间戳 console.log("生成key", key); setCookie(key);//设置时间戳cookie function setCookie(c_name, value, expiredays) var exdate = new Date() exdate.setDate(exdate.getDate() + expiredays) document.cookie = c_name + "=" + escape(value) + ((expiredays == null) ? "" : ";expires=" + exdate.toGMTString()) function getCookie(c_name) if (document.cookie.length > 0) c_start = document.cookie.indexOf(c_name + "=") if (c_start != -1) c_start = c_start + c_name.length + 1 c_end = document.cookie.indexOf(";", c_start) if (c_end == -1) c_end = document.cookie.length return unescape(document.cookie.substring(c_start, c_end)) return "" </script> </head> <body> <span id="num"></span> </body> </html>
以上是关于生成时间戳随机数的主要内容,如果未能解决你的问题,请参考以下文章