一直在尝试更改此 HTML 代码而不是当前周来显示月份和年份,而不是当前让它每两个月更新一次。有人可以帮我解决这个问题吗?我尝试使用谷歌搜索,但我是初学者,到目前为止我无法让它工作。
<li role="presentation" ><a id="theLink1" title="Updated for previous week" target="content"> Document 2021 WK</a>
<script>
function weekOfYear() {
let now = new Date();
return Math.round((now - new Date(now.getFullYear(), 0, 1)) / (1000 * 60 * 60 * 24 * 7));
}
var theLink1 = document.getElementById('theLink1');
theLink1.href = '-----link to document----' + weekOfYear() + '.pdf';
theLink1.innerText = 'Name of document visible in interface' + weekOfYear();
</script> </a></li>
我尝试使用此代码一个月:
let now = new Date(); let nowMonth = format(now, "MMMM"); let oneMonthLater = addMonths(now, 1); let nextMonth = format(oneMonthLater, "MMMM")
但它也不会给我当前月份。
先感谢您!