我正在尝试使用变量代替选择器。我需要使用$(document).on();我怎么能逃避这样的事情:
var checkbox1 = document.querySelectorAll("input[name=checkbox-checked]");
for(var i=0; i<checkbox1.length; i++) {
var geocoder = new google.maps.Geocoder();
$(document).on("change", checkbox1[i], function() {
if($(this).is(":checked")) {
var address = $(this).data("address");
geocodeAddress(geocoder, map, address);
}
});
}