淡出在 IE7/IE8 中不起作用

发布于 2024-11-07 14:48:27 字数 133 浏览 0 评论 0原文

我不太确定为什么 jQuery 不能在 IE7 和 IE7 中工作。 IE8。有谁知道可能导致此问题的原因吗?

I'm not quite sure why this bit of jQuery isn't working in IE7 & IE8. Does anyone have any ideas what could be causing this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

—━☆沉默づ 2024-11-14 14:48:27

一方面,因为您使用的是 jQuery,所以在没有内联 js 的情况下执行此操作:

$('input[type=checkbox]').click(function(){
    var checkbox = this;
    if (checkbox.checked) {
        $("#message1").stop(true, true).show().fadeOut(10000);
        $("#message2").hide();
    }
    else {
        $("#message1").stop(true, true).hide();
        $("#message2").stop(true, true).show().fadeOut(10000);
    }
});

仅执行此操作可能会解决 IE 问题

Fiddle: http://jsfiddle.net/maniator/xMSwQ/5/

Well for one thing since you are using jQuery do this without the inline js:

$('input[type=checkbox]').click(function(){
    var checkbox = this;
    if (checkbox.checked) {
        $("#message1").stop(true, true).show().fadeOut(10000);
        $("#message2").hide();
    }
    else {
        $("#message1").stop(true, true).hide();
        $("#message2").stop(true, true).show().fadeOut(10000);
    }
});

Just doing this might fix the IE problem

Fiddle: http://jsfiddle.net/maniator/xMSwQ/5/

厌味 2024-11-14 14:48:27

我明白了,我只需要删除position:relative,它就会完美淡出。我不太清楚为什么会这样......

I got it, I just needed to remove position:relative and it fades out perfectly. I'm not quite sure why that is though...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文