addClass():要素のクラス(class)を追加する
2016/04/19
要素のクラス(class)を追加するの書式
$("要素名").addClass("クラス名");
要素のクラス(class)を追加する場合は、
$("要素名").addClass("クラス名");を記述します。
addClassメソッドの第1引数にクラス名を代入となります。
具体例(要素のクラス(class)を追加するのサンプルコード)
サンプルでは以下の事をしてます。
1.addClassメソッドを使って、クラスを追加。
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> <!-- body {background-color: #ffffff;} --> .classAttention { color: #ff0000; font-weight: bold; } </style> <script src="../../js/jquery-1.12.2.min.js"></script> <script> $(function(){ $("p").addClass("classAttention"); }); </script> </head> <body> <p>pタグの文字</p> <div id = "resultDiv">上のPタグの文字はどんな感じ?</div> </body> </html>