jquery 淡入问题

发布于 2024-12-14 09:13:00 字数 474 浏览 2 评论 0原文

  $(document).ready(function () {
$('#1a,#2a,#3a,#5a,#6a').click(show_hide);
function show_hide() {
    // function logic
    $('#cont6').hide();
    $('#cont5').hide();
    $('#cont4').hide();

    $('#cont3').hide();
    $('#cont2').hide();

    $('#cont1').fadeIn("slow");
    if ($.browser.msie && parseInt($.browser.version) == 7) {
        this.style.removeAttribute('filter');
    }
}

});

上面的脚本不起作用,任何人都可以告诉我它出了什么问题。谢谢

  $(document).ready(function () {
$('#1a,#2a,#3a,#5a,#6a').click(show_hide);
function show_hide() {
    // function logic
    $('#cont6').hide();
    $('#cont5').hide();
    $('#cont4').hide();

    $('#cont3').hide();
    $('#cont2').hide();

    $('#cont1').fadeIn("slow");
    if ($.browser.msie && parseInt($.browser.version) == 7) {
        this.style.removeAttribute('filter');
    }
}

});

The above script doesnt works, can any one tell me whats wrong with it . thanks

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

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

发布评论

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

评论(1

所谓喜欢 2024-12-21 09:13:01

您需要更改下一行中使用的 ID,以不使用数字,因为

$('#1a,#2a,#3a,#5a,#6a').click(show_hide);

以数字开头的第一个字符 ID 无效。

You need to change the IDs used on the following line to not use numbers as the first character

$('#1a,#2a,#3a,#5a,#6a').click(show_hide);

IDs starting with numbers are invalid.

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