JQuery:addClass() 不改变选择器的背景

发布于 2024-08-29 14:18:13 字数 570 浏览 3 评论 0原文

我在 firebug 中的 click() console.log() 上交换背景图像时遇到了一些麻烦,

    $('.highlight-boxes li a[class!=selected-box]').click(function() {
        $('.highlight-content').hide();
        $('.highlight-boxes li a').removeClass(); 
        $(this).addClass('box-selected');  // problem here
        var selected = $(this).attr('href').substr(1);
        $('#' + selected).stop(true,true).fadeIn();

        return false;
    });

返回了被单击的正确元素,但 $(this).addClass('box- selected') 不会更改当前单击元素的背景。

有什么想法吗?

TIA

im having a little trouble getting the background image to swap out on click()

    $('.highlight-boxes li a[class!=selected-box]').click(function() {
        $('.highlight-content').hide();
        $('.highlight-boxes li a').removeClass(); 
        $(this).addClass('box-selected');  // problem here
        var selected = $(this).attr('href').substr(1);
        $('#' + selected).stop(true,true).fadeIn();

        return false;
    });

console.log() in firebug returns the correct element being clicked but $(this).addClass('box-selected') does not change the background of the currently clicked element.

any ideas?

TIA

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文