端くれプログラマの備忘録 jQuery [jQuery] 基本メモ: cssの操作

[jQuery] 基本メモ: cssの操作

プロパティの設定

$('p').css('color','red').css('background','blue');

プロパティの取得

console.log($('p').css('color'));

クラスの追加

$('p').addClass('myStyle');

クラスの削除

$('p').removeClass('myStyle');

参考サイト

jQuery 日本語リファレンス
http://semooh.jp/jquery/