我有以下内容:
  $(document)
    .ajaxStart(function () {
        $(this).css({ 'cursor': 'progress !important' })
    })
    .ajaxStop(function () {
        $(this).css({ 'cursor': 'default !important' })
    });
有没有办法可以将光标进度状态延长 2 秒。现在它来得太快了。换句话说,我想让光标变为“进度”至少几秒钟。