2015年11月17日火曜日

jQuery 動的に追加された要素にもCSSを適用させる

jQueryで動的にSTYLEタグを追加 - Qiita

  var style = '';
  style += '<style type="text/css" id="StyleId">';
  style += '.item1 { color:red; }';
  style += '.item2 { color:blue; }';
  style += '.item3 { color:green; }';
  style += '.item4 { color:yellow; }';
  style += '.item5 { color:purple; }';
  style += '</style>';
  $('head').append(style);

0 件のコメント:

コメントを投稿