我想让它+10,为第一个工作,但第二个工作,之后它增加超过 10 ..
我的js
$('#test').on('click', function (e) {
$this = $('#progressbarr > div').width();
var i = $this + 10;
$('#progressbarr > div').css('width', (i + '%'));
$progress_bar = $('#progressbarr');
var progressbar_width = Math.floor(100 * ($progress_bar.find('div').width()) / $progress_bar.width());
$progress_bar.find('span').text(progressbar_width + '%');
});