「jQuery入門」同じイベントを複数登録するサンプル

2018年5月31日

JSコード
$(“#testForm input, #testForm select, #testForm textarea").each(function(i, m) {
$(m.change(function(){
//some code
});
});

jQuery

Posted by arkgame