gpt4 book ai didi

FF 中的 jQuery removeAttribute 错误

转载 作者:行者123 更新时间:2023-12-01 07:36:09 25 4
gpt4 key购买 nike

我编写了一个 jQuery 脚本来发光然后淡出,类似于堆栈溢出时的发光和淡出。我遇到的唯一问题是,当我调用removeAttribute('filter') 来修复 IE 的cleartype 字体时,它在 Firefox 中出错,从而阻止其他脚本工作。

当我注释掉该行时,一切正常,除了在 IE 中,cleartype 很难看。这是我的方法...

function flash(selector) {
$(selector)
.css('opacity', 0)
.animate({ backgroundColor: 'khaki', opacity: 1.0 }, 800)
.animate({ backgroundColor: '#ffffff' }, 350, function() {
this.style.removeAttribute('filter');
});
}

有什么想法、想法等等吗?

谢谢!

最佳答案

嗯...jQuery 的 removeAttr 也会失败吗?

...
.animate({ backgroundColor: '#ffffff' }, 350, function() {
$(this).removeAttr('filter');
};

关于FF 中的 jQuery removeAttribute 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1456790/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com