当前日期js代码中字体颜色不变

Font color not changing in current date js code

本文关键字:颜色 字体 js 代码 当前日期      更新时间:2024-01-06

所以我得到了一个计算当前日期的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> 

这就是现在的样子,日期是黑色的,我想要白色的。尝试在"style"中更改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>");