gpt4 book ai didi

javascript - ReferenceError: "document"未定义

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

我是 JavaScript 的新手,对 Google Apps 脚本更是新手。我正在尝试一个显示当前日期(仅日、月和全年)的简单函数,但 Google 脚本显示错误 ReferenceError: "document"is not defined。

我的目标是在 Google 站点中使用此功能。这是代码:

function Data()
{
var d=new Date();
var dia=d.getDate();
var mes=d.getMonth();
var ano=d.getFullYear();
var DataCompleta=dia + "/" + mes + "/" + ano
document.write(DataCompleta);
}

最佳答案

作为 Google Apps 脚本运行的代码不在浏览器中运行,因此您不能使用网络浏览器 API。如果您想将内容输出到 Google 站点,则需要使用 API for Sites .

大概你会想要类似 createWebPage 的东西然后使用 the methods on the resulting object向其中添加内容。

关于javascript - ReferenceError: "document"未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13552250/

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