我使用這個劇本,我的進度條:如何刪除<i>標籤使用javascript
$('.progress-bars li').each(function(i){
var percent = $(this).find('.spann').attr('data-width');
var $endNum = parseInt($(this).find('.spann strong i').text());
var $that = $(this);
$(this).find('.spann').animate({
'width' : percent + '%'
},1600, function(){
});
$(this).find('.spann strong').animate({
'opacity' : 1
},1400);
$(this).find('.spann strong i').countTo({
from: 0,
to: $endNum,
speed: 1200,
refreshInterval: 30,
onComplete: function(){}
});
if(percent == '100'){
$that.find('.spann strong').addClass('full');
}
});
我用<i></i>
標籤找到號碼countTo
功能。我的問題是我想在運行countTo
腳本後刪除這些<i>
標籤。
例子:
<ul class="progress-bar">
<li>
<p>Video production</p>
<div class="bar-wrap"><div class="spann" data-width="100"><strong><i>100</i>% </strong><div class="arrow"></div></div> </div>
</li>
<li>
<p>IOS Development</p>
<div class="bar-wrap"><div class="spann" data-width="80"><strong><i>80</i>% </strong><div class="arrow"></div></div> </div>
</li>
</ul>
後,我跑我想刪除<i></i>
標籤和保持數量的腳本。
爲什麼不使用更多語義的東西而不用擔心刪除它們?或者將它們包含在'data-'屬性中? – 2015-02-08 12:37:36
因爲我使用一頁滾動,當我切換當前頁面時,它再次開始countTo。 我嘗試了很多東西,但這是我最好的解決方案。 – user3097545 2015-02-08 12:48:56