「jQuery 入門」jQuery( html, props )を利用するサンプルコード

サンプルコード:
$(“<input>", {
type: “text",
val: “this is a jquery api method code",
focusin: function() {
$(this).addClass(“active");
},
focusout: function() {
$(this).removeClass(“active");
}
}).appendTo(“form")

JavaScript

Posted by arkgame