<li class="person" data-chat="person1">
<img src="http://s13.postimg.org/ih41k9tqr/img1.jpg" alt="" />
<span class="name">user time</span>
<span class="time">0:00 AM</span>
<span class="preview">last message</span>
</li>
我有一段时间的实际时间。我想将值0:00 AM替换为具有属性data-chat="person1"
的人的变时。
答案 0 :(得分:0)
试试这个:
$('[data-chat="person1"] .time').html(time.toString())
$('[data-chat="person1"] .time')
会将该元素与.time
元素选择器的子类[data-chat="person1"]
匹配。
答案 1 :(得分:0)
使用
document.querySelector('["data-chat"="person1"] .time').innerHTML = '23:00 AM' // new time