为什么$ .get()似乎没有触发.ajaxStart()?

时间:2012-09-10 11:25:26

标签: javascript jquery css

我有以下代码:

$("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?

更新:我刚刚改为!重要。

0 个答案:

没有答案