我有以下代码:
$("body")
.ajaxStart(function () {
$(this).css({ 'cursor': 'progress !important' })
})
.ajaxStop(function () {
$(this).css({ 'cursor': 'default !important' })
});
当我发出此代码时,代码有效,但似乎不会触发光标更改:
$.get(href)
.success(function (content) {
// code here
})
.fail(function (ajaxContext) {
// code here
});
我是否需要专门使用 $.ajax 来触发 .ajaxStart ?
更新:我刚改成!important。