如何更改此脚本中的文本颜色?

时间:2017-09-08 19:11:47

标签: javascript html css

我想将显示的文字的颜色改为白色,但是,我不知道如何解决这个问题,有人能帮助我吗?

代码:

<!-- Display the countdown timer in an element -->
<p id="demo"></p>

<script>
// Set the date we're counting down to
var countDownDate = new Date("Sep 22, 2017 15:37:25").getTime();

// Update the count down every 1 second
var x = setInterval(function() {

  // Get todays date and time
  var now = new Date().getTime();

  // Find the distance between now an the count down date
  var distance = countDownDate - now;

  // Time calculations for days, hours, minutes and seconds
  var days = Math.floor(distance / (1000 * 60 * 60 * 24));
  var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
  var seconds = Math.floor((distance % (1000 * 60)) / 1000);

  // Display the result in the element with id="demo"
  document.getElementById("demo").innerHTML = days + "Days " + hours + "Hours "
  + minutes + "Minutes " + seconds + "Seconds ";

  // If the count down is finished, write some text 
  if (distance < 0) {
    clearInterval(x);
    document.getElementById("demo").innerHTML = "EXPIRED";
  }
}, 1000);
</script>

PS我是一个菜鸟,这段代码来自W3。

2 个答案:

答案 0 :(得分:4)

  

this issue

您通过JavaScript访问的每个HTML元素都有一个样式对象。此对象允许您指定CSS属性并设置其值。

 document.getElementById("p2").style.color = "blue";

答案 1 :(得分:0)

有一些方法可以做到这一点,但最简单的方法是设置一个CSS内联参数。像这样:

<p id="demo" style="color: white;"></p>

这就是魔术。 :)

明确检查一下 - &gt; https://www.w3schools.com/css/default.asp

相关问题