我在如何更新我的網站發佈會議紀要方面有點麻煩。jQuery Time Ago
所以說,我有這樣的:
<small>posted <span class="updateMinutes">20 minutes </span> ago</small>
<small>posted <span class="updateMinutes">33 minutes </span> ago</small>
我試圖更新範圍內的分鐘。我遇到的問題是,只有一個跨度更新,而另一個不更新。我的jQuery代碼如下:
setInterval(function(){
var minute = $('.updateMinutes').text().match(/\d+/);
$('.updateMinutes').html((parseInt(minute[0]) + 1).toString() + ' minutes');
}, 60000);
我也對.each()
方法的jQuery閱讀起來了,但我不知道我怎麼會實現它在這種情況下,如果這將是一個可行的解決方案。代碼我嘗試使用時.each()
:
setInterval(function(){
$('.updateMinutes').each(function(){
var minute = $('.updateMinutes').text().match(/\d+/);
$('.updateMinutes').html((parseInt(minute[0]) + 1).toString() + ' minutes');
});
}, 60000);
任何幫助非常感謝!謝謝。
它看起來像你有'min [0]'而不是'minute [0]' –
'min [0]'是一個錯誤...結果在'minute [0]' –
是的,我注意到了謝謝我糾正它。我本來有分鐘的意思:p。 –