CSS

設定・取得

 $('span').css('fontSize', '16px');
 var size = $('span').css('fontSize');

まとめて設定

 $('span').css({
   font-size: "16px",
   color:     "red"
 });

CSSクラスの追加・削除

 $('span').addClass('color-red');
 $('span').removeClass('font-big');

トグル

 <!DOCTYPE html>
 <html>
 <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
 <style type="text/css">
 .highlight { background: yellow; }
 </style>
 <script>
 $(function(){
    $("#div").on("click", function(){
      $(this).toggleClass("highlight");
      });
 });
 </script>
 <body>
 <div id="div">HELLO</div>
 </body>
 </html>

トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS

Last-modified: 2013-10-04 (金) 12:05:51