我有以下代码:
$("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?
更新:我刚刚改为!重要。