jquery 主题切换器“loadTheme”不起作用
我希望在页面加载时加载 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来 loadTheme-option 被现有的 cookie 覆盖。
尝试:(
另请注意 Vader 中的大写 V,主题名称区分大小写)
Looks like the loadTheme-option is overriden by an existing cookie.
Try:
(also note the uppercase V in Vader, the theme-names are case-sensitive)