gpt4 book ai didi

javascript - 字体颜色在当前日期 js 代码中没有改变

转载 作者:太空宇宙 更新时间:2023-11-04 14:16:46 25 4
gpt4 key购买 nike

于是我得到了一个计算当前日期的js代码,但是我不能改变字体的颜色。我试图改变 CSS 和 html 页面。你能帮帮我吗?

<div id="day" style="width:248px; font-color: #fff; border-top: none; border-right: none; border-left: none; padding-bottom:2px; background-color:#acd373; font-size:12px;" > 

<a style="float: left;" href="yesterday.html" > < </a>

<script language="JavaScript" type="text/javascript">
<!--

var months = new Array(12);
months[0] = "January";
months[1] = "February";
months[2] = "March";
months[3] = "April";
months[4] = "May";
months[5] = "June";
months[6] = "July";
months[7] = "August";
months[8] = "September";
months[9] = "October";
months[10] = "November";
months[11] = "December";

var current_date = new Date();
month_value = current_date.getMonth();
day_value = current_date.getDate();
year_value = current_date.getFullYear();

document.write( months[month_value] + " " +
day_value + ", " + year_value);

//-->
</script>

<a style="float: right;" href="tomorrow.html" > > </a>

</div>

这就是现在的样子,日期是黑色的,我想要白色的。试图在“样式”中更改 div,一切正常,包括字体大小,颜色除外。 http://s30.postimg.org/azxdl1co1/Captura_de_ecr_2013_11_30_s_15_47_40.png

最佳答案

添加一个元素来设置颜色属性。

document.write("<span style='color:#fff;'>" + months[month_value] + " " + day_value + ", " + year_value+"</span>");

关于javascript - 字体颜色在当前日期 js 代码中没有改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20302246/

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