当前位置: 代码迷 >> Web前端 >> 随机数-时间截取
  详细解决方案

随机数-时间截取

热度:356   发布时间:2012-11-04 10:42:41.0
随机数---时间截取
<html>
<head>
<title>随机数</title>
<script>
function random(){
var date = new Date();
var s = '';
s = ("0"+date.getMinutes()).slice(-2);
s += ("0"+date.getSeconds()).slice(-2);
s += ("0"+date.getMilliseconds()).slice(-2);
document.getElementById("rand").value = s;
}
</script>
</head>
<body>
<input type="text" name="rand" id="rand" disabled/>
<input type="button" value="生成" onclick="random()"/>
</body>
</html>
  相关解决方案