CSS スタイルのスイッチャーを構築しようとしています。スタイルシート ファイルのサブ フォルダを定義するにはどうすればよいですか? 現在、スタイルシート ファイルがルート フォルダにある場合、スクリプトは正常に動作します。スタイルシート ファイルを/css
フォルダーの下に置くと、動作しなくなります。
ディレクトリ ツリー:
ルート
index.html
--css
----blue.css
----green.css
----yellow.css
----grey.css
--js
----core.js
----jquery .js
どうすれば修正できますか?ここにデモがあります
(function ($j) {
switch_style = {
onReady: function () {
this.switch_style_click();
},
switch_style_click: function(){
$(".box").click(function(){
var id = $(this).attr("id");
$("#switch_style").attr("href", id + ".css");
});
},
};
$j().ready(function () {
switch_style.onReady();
});
})(jQuery);