我寫了這個非常簡單的背景選擇器。簡單的jQuery css背景「選擇器」
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"></script>
<title>jQuery Demo</title>
<link rel="stylesheet" type="text/css" media="screen" href="Normal.css" />
<script type="text/javascript">
$(document).ready(function(){
$("#StyleContrast").click(function() {
$("link[media='screen']").attr("href", "Contrast.css");
});
$("#StylePrint").click(function() {
$("link[media='screen']").attr("href", "Print.css");
});
$("#StyleNormal").click(function() {
$("link[@media='screen']").attr("href", "Normal.css");
});
});
</script>
</head>
<body>
<h1>Choose A Style:</h1>
<ul>
<li><a id="StyleContrast" href="#">Contrast</a></li>
<li><a id="StylePrint" href="#">Print</a></li>
<li><a id="StyleNormal" href="#">Normal</a></li>
</ul>
</body>
</html>
我: Normal.css Print.css Contrast.css在同一文件夾
一個非常基本的:
body {background-color:#000000;}
當我去到URL它選擇Normal.css(因爲它應該)
然後,它改變就好了Print.css或Contrast.css(因爲它應該)
但是它不會返回(不會選擇)Normal.css了嗎?
你能幫我看看代碼有什麼問題嗎?
嘿!非常感謝你!!像魅力一樣工作!我不明白爲什麼,你能解釋一下嗎?謝謝! – Trufa 2010-10-06 15:39:14
當然!看我的編輯。另外,如果這對你有效,請將我的答案標記爲已接受:D – 2010-10-06 15:43:19
好了,我真的不能發現它!特別是因爲jQuery的「官方」教程是錯誤的http://docs.jquery.com/Tutorials:5_Quick_jQuery_Tips#Switch_A_Stylesheet我會嘗試編輯它!非常感謝!該網站告訴我,等待時間結束後,我必須等待5分鐘才能接受答案。乾杯!! – Trufa 2010-10-06 15:49:29