如何用js设置select为当前年月
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用js设置select为当前年月相关的知识,希望对你有一定的参考价值。
var date = new Date(); // new 一个Date对象var year = date.getFullYear(); // 年份
var month = date.getMonth() + 1; // 月份(<a href="https://www.baidu.com/s?wd=%E4%BB%8E0%E5%BC%80%E5%A7%8B&tn=44039180_cpr&fenlei=mv6quAkxTZn0IZRqIHckPjm4nH00T1Ykuj0vnWR3nHnvujF-nvD40ZwV5Hcvrjm3rH6sPfKWUMw85HfYnjn4nH6sgvPsT6KdThsqpZwYTjCEQLGCpyw9Uz4Bmy-bIi4WUvYETgN-TLwGUv3EnHbdrH0LPHc4P1RYnWTsP1Rsn0" target="_blank" class="baidu-highlight">从0开始</a>,所以应+1)
for(var i = month; i > month - 6; i--)
$("<option value=''>" + year + "年" + i + "月" + "</option>").appendTo($("select")); // 依次添加下拉框选项,value自定义,右边的appendTo参数为目标选择框
参考技术A $("#year").val(d.getFullYear());
$("#month").val(((d.getMonth() + 1)+'').replace(/^(.)$/,'0$1'))
如何用js获取特定时间戳
可以人为设置时间戳开始时间并获取到当前时间,转换成年 月 日 时 分 秒 的格式,并且在前端页面实时更新
var formatTime = function(time = new Date(), format)const TOTOW = e => `0$e`.substr(-2); // 转成2位的格式 1 => 01
const date = new Date(time);
const yyyy = date.getFullYear();
const MM = TOTOW(date.getMonth() + 1);
const dd = TOTOW(date.getDate());
const hh = TOTOW(date.getHours());
const mm = TOTOW(date.getMinutes());
const ss = TOTOW(date.getSeconds());
let result;
if (format)
result = format.replace(/yyyy/i, yyyy).replace(/MM/, MM).replace(/dd/i, dd).replace(/hh/i, hh).replace(/mm/, mm).replace(/ss/i, ss);
else
result = `$yyyy-$MM-$dd $hh:$mm:$ss`;
return result;
setInterval(() =>
let now = formatTime(new Date(), 'yyyy年MM月dd日 hh时mm分ss秒'); // 月份必须是大写MM,分钟必须是小写mm,其他大小写都行
document.body.innerText = now;
, 1000) 参考技术A 2010年荣获 参考技术B 取特定时间戳
以上是关于如何用js设置select为当前年月的主要内容,如果未能解决你的问题,请参考以下文章
如何用js得到当前页面的url信息方法(JS获取当前网址信息)