js 根据当前时间生成订单号

思路:获取当前时间的时间戳,分别求出年、月、日、时、分、秒,用一个变量接收把他们和起来就行了


		
订单号:
    var btn=document.getElementById('btn')
	var order=document.getElementById('order')
	btn.onclick = function(){
		GetDateNow();
    }
	
	function GetDateNow(){
			// 时间戳
			var time = new Date();
			// 年
			var year= String(time.getFullYear());
			// 月
			var mouth= String(time.getMonth() + 1);
			// 日
			var day= String(time.getDate());
			// 时
			var hours= String(time.getHours());
			if(hours.length<2){
				hours='0' + hours
			}
			// 分
			var minutes= String(time.getMinutes());
			if(minutes.length<2) {
				minutes='0' + minutes
			}
			// 秒
			var seconds= String(time.getSeconds());
			if(seconds.length<2) {
				seconds='0' + seconds
			}
			var str = year + mouth + day + hours + minutes + seconds
			order.value = str
		}

前端页面简单的订单生成完成!
在这里插入图片描述

你可能感兴趣的:(课堂笔记)