私は次のものを持っています:
$(document)
.ajaxStart(function () {
$(this).css({ 'cursor': 'progress !important' })
})
.ajaxStop(function () {
$(this).css({ 'cursor': 'default !important' })
});
カーソルの進行状態を 2 秒延長する方法はありますか。現在、それは行き来が速すぎます。言い換えれば、カーソルを少なくとも数秒間「進行」に変更したいと思います。