「jQuery入門」同じイベントを複数登録するサンプル
JSコード
$(“#testForm input, #testForm select, #testForm textarea").each(function(i, m) {
$(m.change(function(){
//some code
});
});
Coding Changes the World
JSコード
$(“#testForm input, #testForm select, #testForm textarea").each(function(i, m) {
$(m.change(function(){
//some code
});
});