「jQuery]addClass()でcssクラスを追加する方法
説明
addClass(class). 指定した要素に、CSSクラスを追加する。
htmlコード
<tbody> <tr> <th><p>A001</p></th> <th><p>B002</p></th> <th><p>C003</p></th> </tr> </tbody>
JSコード
$(“.tBody").addClass(“"cft);
CSSコード
<style>
.cft{
heigth:100px;
}
</style>