使用外部 javascript 显示当前年份

我在使用外部文件中的 js 更新当前年份时遇到问题。html 中的年份不会更新以显示当前年份。这是我的 html 代码;


<p>

    Copyright &copy; <span id="year">year</span>. All rights reseverved.

</p>


<script src="./js/shared.js"></script>

这是我的 js 代码;


const year = document.querySelector('#year');


function date() {

    year.innerHTML = new Date()

};

我在这里做错了什么,实现我的目标的正确方法是什么?


MYYA
浏览 138回答 1
1回答

一只斗牛犬

只需尝试添加函数调用:&nbsp; document.addEventListener('DOMContentLoaded', function(){&nbsp; &nbsp; &nbsp; const year = document.querySelector('#year');&nbsp; &nbsp; &nbsp; function date() {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;year.innerHTML = new Date().getFullYear();&nbsp; &nbsp; &nbsp; };&nbsp; &nbsp; &nbsp; date();&nbsp; }
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript