移除类后 Cufon 颜色保持不变

发布于 2024-10-03 20:06:31 字数 137 浏览 2 评论 0原文

我有链接,当点击一个链接时,会添加一个 id 来改变颜色。其他链接已删除该类,因此颜色将恢复正常。这是在禁用 javascript 的情况下工作的,我什至可以看到代码在 firebug 中工作,但由于某种原因 cufon 保留了所选的类颜色。请提供任何帮助。塔

I have links and when one is clicked there is an id added which changes the colour. The other links have the class removed so there colour will retun to normal. This is working with javascript disabled and I can even see the code working in firebug but for some reason cufon keeps the selected class colour. Any help please. Ta

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

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

发布评论

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

评论(2

半枫 2024-10-10 20:06:31

尝试重新绘制文本

Cufon.refresh();

Try to repaint the text

Cufon.refresh();
極樂鬼 2024-10-10 20:06:31

继 balint 所说之后,这里有一个关于如何刷新切换类的列表元素的 cufon 的 jquery 示例:

$("ul li").click(function(){
    var me = $(this)
    me
        .addClass('active')
        .siblings().removeClass('active')

    // Need to call the function twice for some reason
    Cufon.replace(me);
    Cufon.replace(me.siblings());
})

Following up on what balint said, here's a jquery example on how to refresh cufon for list elements that toggle classes:

$("ul li").click(function(){
    var me = $(this)
    me
        .addClass('active')
        .siblings().removeClass('active')

    // Need to call the function twice for some reason
    Cufon.replace(me);
    Cufon.replace(me.siblings());
})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文