gpt4 book ai didi

javascript - 使用内联 javascript 添加当前日期

转载 作者:行者123 更新时间:2023-12-01 08:06:11 24 4
gpt4 key购买 nike

当我运行以下代码时,日期没有显示在输出中。我似乎无法弄清楚为什么日期不会显示...

<!DOCTYPE html>
<html>
<head>
<title>document.write() Example</title>
</head>
<body>
<p>The current date and time is:
<script type=”text/javascript”>
document.write(“<strong>” + (new Date()).toString() + “</strong>”);
</script>
</p>
</body>
</html>

最佳答案

因为您使用的是这些类型的引号:“... ”。你需要使用 "... "

<script type="text/javascript">
document.write("<strong>" + (new Date()).toString() + "</strong>");
</script>

片段:

 document.write("<strong>" + (new Date()).toString() + "</strong>");

关于javascript - 使用内联 javascript 添加当前日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26368682/

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