我想在用戶使用jQuery UI Themeselector更改頁面主題時更改主體背景顏色。如何通過ThemeSelector更改背景顏色以匹配jQuery UI主題?
我已經試過這
function updateBodyBackground() {
$("body").css('background-color', $('.ui-widget-header:first").css("background-color") + ' !important;');
}
然後我把它的文件準備(以設置初始主題背景)和我將它設置爲這樣的ThemeSelector OnClose事件;
$function() {
updateBodyBackground();
$('#switcher').themeswitcher({ expires: 365, path: '/', loadTheme: "sunny", onClose: updateBodyBackground });
}
在Firefox中沒有做任何事情,似乎是Chrome上的一個變化,選擇器在IE8中似乎不起作用。
有關如何更改背景以更好地匹配選定的jQuery UI主題的任何建議?
謝謝!