1
我怎樣才能獲得包含class「timeAuction」的標籤的所有值?如何通過類名獲取多個標籤的值?
我正在編寫JavaScript函數,它將獲得每個類名爲timeAuction
的標籤並修改其值。我有隨機數量的這個類名稱的標籤。
這裏是我的代碼,使HTML:
<label id="@Html.Raw("time" + item.IDAuc)" class="displayLabelProduct timeAuction">
@diff.ToString(@"dd\:hh\:mm\:ss")
</label>
我需要經過每個標籤這個類,像for循環和修改。
使用jQuery,'$('。timeAuction')。t ext(function(){// anything})' – Rayon
請參見[SO文檔](http://stackoverflow.com/documentation/dom/2658/retrieving-elements/8852/by-class-name#t=201609022014123132209 )爲一個沒有jQuery的例子,以及[使用jQuery的SO文檔](http://stackoverflow.com/documentation/jquery/389/selectors/2115/types-of-selectors#t=20160902201510344004)。 –