所以基本上我使用的是 jQuery ui prgoressbar,我想打印所有的值。这是代码:
$(function() {
var a = $('.progressbar.item1').progressbar({value: 37});
var b = $('.progressbar.item2').progressbar({value: 55});
var c = $('.progressbar.item3').progressbar({value: 99});
...
var x = $('.progressbar.itemx').progressbar({value: 29});
$(a).find('.ui-progressbar-value').append('<span>' + a.progressbar('option','value') + '%</span>');
$(b).find('.ui-progressbar-value').append('<span>' + b.progressbar('option','value') + '%</span>');
$(c).find('.ui-progressbar-value').append('<span>' + c.progressbar('option','value') + '%</span>');
...
$(x).find('.ui-progressbar-value').append('<span>' + x.progressbar('option','value') + '%</span>');
});
我怎样才能使它更短,比如使用“每个”的“for”?谢谢。