我有活动日历突出显示日期,但如果我在同一日期有两个活动,我希望它突出显示一些不同的颜色以显示此日期有两个活动
我使用条件格式
<html>
<head><title>Date time</title></head>
<body>
<h1> Time and Date </h1>
<div class="date"></div>
<script>
var now = new Date();
var localtime = now.toString();
var utctime = now.toGMTString();
var container = document.querySelector('.date');
container.innerHTML =
"<b> local time: </b>" + localtime + "<BR>" +
"<b> UTC time: </b>" + utctime;
document.body.appendChild(document.createTextNode("Hello World!"));
</script>
</body>
</html>