最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Force immediate DOM update modified with jQuery in long-running function - Stack Overflow

programmeradmin1浏览0评论

I have a javascript that takes about 2 seconds to execute (plex optimization algorithm). I want to set certain span to "working..." at the beginning of the function. I observe that the span doesn't change until the end of the function.

How can I force DOM changes propagation? or should I approach this differently all together?

I call the function from onclick on the button.

The function is something like:

function optimize() {
    $('#status').text('working...');
    // calculate for 2 seconds
    $('#status').text('done!');
}

I have a javascript that takes about 2 seconds to execute (plex optimization algorithm). I want to set certain span to "working..." at the beginning of the function. I observe that the span doesn't change until the end of the function.

How can I force DOM changes propagation? or should I approach this differently all together?

I call the function from onclick on the button.

The function is something like:

function optimize() {
    $('#status').text('working...');
    // calculate for 2 seconds
    $('#status').text('done!');
}
Share Improve this question asked Oct 23, 2010 at 17:01 THX-1138THX-1138 21.8k27 gold badges100 silver badges166 bronze badges 1
  • That should work. Could you give a link to the non-functioning code? – lonesomeday Commented Oct 23, 2010 at 17:15
Add a ment  | 

1 Answer 1

Reset to default 12

Try wrapping the long running code in a setTimeout call:

function optimize() {
    $('#status').text('working...');
    window.setTimeout(function() {
        // calculate for 2 seconds
        $('#status').text('done!');
    }, 0);
}

This forces a new call stack for the long running code, allowing the repaint (changing of the text) to plete before the new call stack begins execution.

发布评论

评论列表(0)

  1. 暂无评论