「jquery入門」addClass()で要素にクラスを追加する
サンプル1
$(document).ready(function () {
$(“:image").addClass(“cft-css");
});
サンプル2
$(“button").click(function(){
$(“p:first").addClass(“cftintro");
});
Coding Changes the World
サンプル1
$(document).ready(function () {
$(“:image").addClass(“cft-css");
});
サンプル2
$(“button").click(function(){
$(“p:first").addClass(“cftintro");
});