jquery 主题切换器“loadTheme”不起作用

发布于 2024-11-03 06:24:30 字数 315 浏览 0 评论 0原文

我希望在页面加载时加载 jquery ui 主题“vader”,

因此代码:

    $('#switcher').themeswitcher({
        loadTheme: 'vader',
        width: 160
    });

但页面只能加载我上次选择的主题,

我收集了本地主机中的所有主题文件夹,我不更改主题文件夹名称

,我可以正常且正确地选择不同的主题,元素的样式可以改变,但它不能只加载我指定的主题

那么我的代码有什么问题吗?我该如何解决这个问题?

I want when page loaded ,load jquery ui theme 'vader'

so the code:

    $('#switcher').themeswitcher({
        loadTheme: 'vader',
        width: 160
    });

but the page can only load the theme I selected last time

I have collect all theme folders in localhost,I doesn't change the theme folder name

and I can choose different theme normally and correctly,the element's style could changed,but it can not just load the theme I appointed

So what's wrong with my code? how can I solve this problem ?

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

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

发布评论

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

评论(1

山人契 2024-11-10 06:24:30

看起来 loadTheme-option 被现有的 cookie 覆盖。

尝试:(

$('#switcher').themeswitcher({loadTheme: 'Vader', cookieName:'', width: 160});

另请注意 Vader 中的大写 V,主题名称区分大小写)

Looks like the loadTheme-option is overriden by an existing cookie.

Try:

$('#switcher').themeswitcher({loadTheme: 'Vader', cookieName:'', width: 160});

(also note the uppercase V in Vader, the theme-names are case-sensitive)

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