我想知道哪种方法更好,为什么:A)点击一个文档,带有许多选择器,B)点击多个文档。
A的选择器也有限制吗?谢谢。
一个)
$(document).on('click', '#a, #b, #c, #d, #e', function(e){
});
对比
二)
$(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){
});