所以我得到了一个计算当前日期的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
答案 0 :(得分:1)
添加元素以设置颜色属性。
document.write("<span style='color:#fff;'>" + months[month_value] + " " + day_value + ", " + year_value+"</span>");