document.querySelectorAll('div#container button:first-child');
<div id="container">
<div id="switcher" class="switcher">
<h3>Style Switcher</h3>
<button id="switcher-default">
Default
</button>
<button id="switcher-narrow">
Narrow Column
</button>
<button id="switcher-large">
Large Print
</button>
</div>
</div>
会返回事件的开始时间,并且在我的情况下会以下列格式返回:
AppointmentItem.Start
我怎样才能将其格式化为:
"29.05.2018 08:00:00"
我可以用&#34; - &#34;替换点。但也许有更好的方法来做到这一点。
我需要把这一年推到开头。
相同的格式返回AppointmentItem.End我也想格式化它
答案 0 :(得分:0)
Dim sTime As String
Dim eTime Ss String
sTime = AppointmentItem.Start
eTime = AppointmentItem.End
sTime = Format(sTime, "yyyy-mm-dd hh:mm:ss")
eTime = Format(eTime, "yyyy-mm-dd hh:mm:ss")
MsgBox "Start: " & sTime & " End: " & eTime