簡單的答案,你只需要在你的樣式表中做一些額外的指示。
就像一個旁註,基於我對需求的理解,我會做主題設置服務器端,這是我的理解,主題將至少每天活動幾個小時。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Test Page</title>
<script src="jquery-1.4.2.min.js" type="text/javascript"></script>
<style type="text/css">
* { font-family: "Lucida Grande" , "Lucida Sans Unicode" , Verdana, sans-serif; }
body { font-size: 0.7em; margin: 0; }
div#themeContainer, div#themeContainer div, div#header, div#footer, div#content
{ margin: 0; padding: 0; }
div#content
{ text-align: center; }
div#header
{ height: 103px; background: #88f; }
div#footer
{ height: 60px; background: #f88; }
div#content div.centered
{ margin: 0 auto; width: 900px; text-align: left; height: 200px; background: #ddd; }
div#content div.centered h1
{ margin-top: 0px; }
div.dark
{ background: #ccc; }
div.dark div#header
{ background: #777; }
div.dark div#footer
{ background: #777; }
div.dark div#content div.centered
{ background: #234; color: #ddd; }
div.dark h1
{ color: #efe; }
div.dark a
{ color: #fff; font-weight: bold; }
</style>
</head>
<body>
<div id="themeContainer">
<div id="header">
<p>
Header gumpf</p>
</div>
<div id="content">
<div class="centered">
<div>
<h1>
Header</h1>
<p>
Some text</p>
<a id="changeTheme" href="#">Click here to change theme</a>
</div>
</div>
</div>
<div id="footer">
<p>
Footer gumpf</p>
</div>
</div>
<script type="text/javascript">
$(document).ready(function() {
$("#changeTheme").click(function() {
var container = $("#themeContainer");
if (container.hasClass("dark"))
container.removeClass("dark")
else
container.addClass("dark");
return false;
});
});
</script>
</body>
</html>
您是否嘗試瞭解它是否可以在沒有@import指令的情況下使用,而是使用css規則呢? – 2010-06-09 16:21:42
同意Gaby - MSIE中的@import實現有點麻煩(需要特定的配置並且必須是第一項)...其他瀏覽器更加寬容... – 2010-06-09 16:24:27
爲什麼你要用javascript而不是服務器端腳本?當然,您可以根據一天中的時間或用戶設置輕鬆地提供正確的主題?什麼是內置的應用程序? – 2010-06-09 21:53:18