外部 JavaScript 文件 - 语句 - 页面最后修改的日期
external JavaScript file - statement - date the page was last modified
在外部 JavaScript 文件中,我正在尝试创建一个插入页面最后修改日期的语句。
我的 .html 文件中的代码
<footer>
<p id="lastMod">Last Modified: </p>
<script src="myjava.js"></script>
</footer>
我的 .js 文件中的代码
document.getElementById("lastMod").innerHTML = document.lastModified;
我正在使用 Brackets,它给我这条错误消息 x2 "ERROR: 'document ' is not defined.[no-undef]"
这是一个 linting 错误,不是 JS 错误。您需要将 eslint-env
设置为 browser
,这样它就会明白 document
在您的环境中是正常的,而不是抱怨。
或者您可以完全禁用 linting:
https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#eslint
You can hide the ESLint results panel by clicking the close box at the top (the status bar icon will still indicate if ESLint has found problems with either a green checkmark or yellow warning symbol), or you can turn off ESLint completely by unchecking View > Lint Files on Save.
在外部 JavaScript 文件中,我正在尝试创建一个插入页面最后修改日期的语句。
我的 .html 文件中的代码
<footer>
<p id="lastMod">Last Modified: </p>
<script src="myjava.js"></script>
</footer>
我的 .js 文件中的代码
document.getElementById("lastMod").innerHTML = document.lastModified;
我正在使用 Brackets,它给我这条错误消息 x2 "ERROR: 'document ' is not defined.[no-undef]"
这是一个 linting 错误,不是 JS 错误。您需要将 eslint-env
设置为 browser
,这样它就会明白 document
在您的环境中是正常的,而不是抱怨。
或者您可以完全禁用 linting:
https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#eslint
You can hide the ESLint results panel by clicking the close box at the top (the status bar icon will still indicate if ESLint has found problems with either a green checkmark or yellow warning symbol), or you can turn off ESLint completely by unchecking View > Lint Files on Save.