4

可能重复:
Jquery css:应用!重要样式

我有以下代码:

$("body")
    .ajaxStart(function () {
        $(this).css({ 'cursor': 'progress' })
    })
    .ajaxStop(function () {
        $(this).css({ 'cursor': 'default' })
    });

这有效,但当我将鼠标悬停在有悬停和不同光标的链接上时无效。有没有一种方法可以使用 jQuery> 将上面的 CSS 光标属性设置为重要

4

4 回答 4

6

试试这个代码,例如:

$(this).css({ 'cursor': 'default !important' })
于 2012-09-10T08:38:37.270 回答
3
$("body")
.ajaxStart(function () {
    $(this).css({ 'cursor': 'progress !important' })
})
.ajaxStop(function () {
    $(this).css({ 'cursor': 'default !important' })
});
于 2012-09-10T08:38:50.307 回答
2

只需!important在您的属性值之后添加:

$("body")
    .ajaxStart(function () {
        $(this).css({ 'cursor': 'progress !important' })
    })
     .ajaxStop(function () {
        $(this).css({ 'cursor': 'default  !important' })
   });
于 2012-09-10T08:39:14.523 回答
1

这是语法,

如何使用 .css() 应用 !important?

于 2012-09-10T08:38:56.753 回答