こんにちは、次の問題 ループ内の各divのid属性文字列が必要です。ここで
<div id="3r23r32_ProgressBar" class="upload-progress-bar"></div>
<div id="gfdgfdgfd_ProgressBar" class="upload-progress-bar"></div>
は何も-.-
$.each("div.upload-progress-bar", function (index,value) {
alert(index);
$('#' + value + 'ProgressBar').animate({
'width': 10 + '%'
}, 250).animate({
'width': 25 + '%'
}, 250).animate({
'width': 65 + '%'
}, 250).animate({
'width': 95 + '%'
}, 250).animate({
'width': 100 + '%'
}, 250);
});
'$ .each()'は使われていません...代わりに '$(sel).each()'を意味するのではないですか? –
@ 32bitkid- $ .each()*はそのように使うことができます;)。 –
'$( 'div.upload-progress-bar')'セレクタ...で '.animate'を呼び出すだけではどうですか? – RYFN