我需要在jquery中找到正確的代碼,這將允許我通過按鈕快速切換樣式表。我目前沒有jQuery,因爲我的所有失敗。我仍然在學習它。總之,這裏是HTML:使用jquery切換樣式表
/* Theme 1 */
body {
\t background: #ff4455;
}
/* Theme 2 */
body {
\t background: #ee7744;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<body>
\t <input type="button" id="theme1">
\t <input type="button" id="theme2">
\t <script type="text/javascript"></script>
</body>
下面是代碼片段。我需要的內部jQuery的<script type="text/javascript"></script>
感謝您的幫助! :D
每個切換請求外部樣式表同樣的偉大工程,謝謝! :d – Akados