gpt4 book ai didi

javascript - 外部 JavaScript 文件 - 语句 - 页面最后修改日期

转载 作者:行者123 更新时间:2023-11-29 23:25:39 24 4
gpt4 key购买 nike

在外部 JavaScript 文件中,我尝试创建一个语句来插入上次修改页面的日期。

我的 .html 文件中的代码

    <footer>
<p id="lastMod">Last Modified: </p>
<script src="myjava.js"></script>
</footer>

我的 .js 文件中的代码

document.getElementById("lastMod").innerHTML = document.lastModified;

我正在使用 Brackets,它给我这个错误消息 x2“错误:‘文档’未定义。[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 - 外部 JavaScript 文件 - 语句 - 页面最后修改日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49461593/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com