我找到了tvanfosson retheme插件here。我简化了插件以满足我的需要。它工作正常。我有一个下拉选择列表,其中包含数字选项值以选择样式表。但是我需要为每种风格设置一个cookie。 cookie已创建,但无法保留cookie。这是修改过的插件:
;(function($) {
$.fn.extend({
retheme: function(options,callback) {
options = $.extend( {}, $.Retheme.defaults, options );
this.each(function() {
new $.Retheme(this,options,callback);
});
return this;
}
});
$.Retheme = function( ctl, options, callback ) {
if (options.styleSheet.match(/^\w/)) {
options.styleSheet = '#' + options.styleSheet;
} else {
//add checking based on url
options.styleSheet = $('link[href*=' + options.baseUrl + ']');
}
$(ctl).filter('select').change( function() {
loadTheme( themeSelector(this), options );
if (callback) callback.apply(this);
return false;
});
};
function themeSelector(ctl) {
var $this = $(ctl);
var theme = $this.attr('href');
if (!theme) {
theme = $this.val();
}
return theme;
}
function loadTheme( theme, options ) {
//var cookedHref = options.baseUrl + theme;
//$.cookie('cthemeHref', cookedHref, { expires: 1 });
//var themeHref = $.cookie('cthemeHref');
var themeHref = options.baseUrl + theme;
if (!themeHref.match(/\.css$/)) {
themeHref += '.css';
}
var styleSheet = $(options.styleSheet);
// set a cookie
$.cookie('links', styleSheet, {expires: 1, path: '/'});
var speed = options.speed;
var delay = options.delay;
var overlay = buildOverlay();
overlay.fadeIn( speed, function() {
styleSheet.attr( 'href', themeHref );
// set a cookie
$.cookie('css', themeHref , {expires: 1, path: '/'});
alert($.cookie('css'));
//$.get( themeHref, function() { // don't want to keep loading
setTimeout( function() {
overlay.fadeOut( speed, function() {
dieOverlay();
});
}, delay );
//});
});
};
$.Retheme.defaults = {
baseUrl: '/styles/',
styleSheet: '',
speed: 'slow',
delay: 500
};
})(jQuery);
然后我放置以下内容来抓取饼干。问题是href属性中的所有链接都被一个选定的cookie替换,而我想为每个选定的链接一次抓取或激活一个cookie。
if($.cookie('css')) {
//$('link').attr('href', $.cookie('css')); //kill all other hrefs
$.cookie('links').attr('href', $.cookie('css')); // $.cookie('links') is not a function
} else {
$(function() {
$('#edit-apple').retheme({baseUrl: '/apple/style-'});
$('#edit-orange').retheme({baseUrl: '/orange/style-'});
$('#edit-mango').retheme({baseUrl: '/mango/style-'});
}
注意:在apple文件夹中我有样式样式-1.css,style-2.css等。否则retheme会失败。没有别的,它可以工作,但没有抓住cookie。
一如往常,任何帮助都会非常感激。感谢
答案 0 :(得分:1)
$.cookie('css')
和$.cookie('links')
内存储的值究竟是什么?
为什么不在cookie中存储css文件名,然后在页面加载时,检查此cookie以获取值。如果cookie存在,并且值有效(包含一组有限的允许值),则使用该值并加载样式表文件。如果cookie无效或者还没有任何值,则加载默认样式表页面。
您还可以查看jquery ui themeroller如何实现主题切换器here。