どのアプローチが優れているのか、そしてその理由は次のとおりです。A)多数のセレクターを備えたクリック時に1つのドキュメント、B)クリック時に複数のドキュメント。
また、Aのセレクターに制限はありますか?ありがとう。
A)
$(document).on('click', '#a, #b, #c, #d, #e', function(e){
});
vs
B)
$(document).on('click', '#a', function(e){
});
$(document).on('click', '#b', function(e){
});
$(document).on('click', '#c', function(e){
});
$(document).on('click', '#d', function(e){
});
$(document).on('click', '#e', function(e){
});