ページのCSSを変更したい。私はそれを行う2つの方法を見ます:
関数を使用してJquery .css
、html 内のすべてのタグを変更します。例 :
$("body").css("background : red")
または、現在の CSS スタイルシートを無効にして、新しいスタイルシートを有効にします。
例:
function switch_style ( css_title )
{
// You may use this script on your site free of charge provided
// you do not remove this notice or the URL below. Script from
// http://www.thesitewizard.com/javascripts/change-style-sheets.shtml
var i, link_tag ;
for (i = 0, link_tag = document.getElementsByTagName("link") ;
i < link_tag.length ; i++ ) {
if ((link_tag[i].rel.indexOf( "stylesheet" ) != -1) &&
link_tag[i].title) {
link_tag[i].disabled = true ;
if (link_tag[i].title == css_title) {
link_tag[i].disabled = false ;
}
}
}
}
どちらの方法がより効率的ですか? それとももっと良い方法がありますか?