事件日历中的突出显示取决于日期公式

时间:2015-12-19 10:54:28

标签: excel excel-formula

我有活动日历突出显示日期,但如果我在同一日期有两个活动,我希望它突出显示一些不同的颜色以显示此日期有两个活动 我使用条件格式 <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>

enter image description here

0 个答案:

没有答案