嗨,我有 2 个 div 既显示日期又具有相同的名称。我现在想专门显示第一个 div,稍后再显示第二个日期。我尝试过搜索,但我发现您可以指定 div 名称元素并通过它区分两个 div。
(This is the first date which I want to display)
<div class="home-weather-sub-div-bar">
<span class="datetext1">Sunday, March 3, 2013 updated 14:45:00 CET</span>
</div>
(This is the second date which I want to display)
<div class="home-weather-sub-div-bar">
<span class="datetext1">Monday, March 4, 2013 until noon</span>
</div>
为了清楚起见,我尝试选择“div.home-weather-sub-div-bar”和“span.datetext1”,但它仍会显示 2013 年 3 月 3 日星期日,更新时间为星期一 14:45:00 CET 然后它还将在同一行中连接 2013 年 3 月 4 日至中午。
请问有什么帮助吗?