$('.tabs').tabs();
$('#search-consumables [data-ajax-call]').change(function() {
var $this = $(this),
settings = $this.data(),
$target = $(settings.target);
$.ajax({
type: 'GET',
url: 'index.PHP?route=module/quicklookup/' + settings.ajaxCall,
data: $this.closest('form').serializeArray(),
dataType: 'json',
success: function(data) {
var html = '';
$target.find(':not(.blank)').remove();
html = $target.html();
data.forEach(function(entry) {
html += '<option value="'+entry.id+'">'+entry.name+'</option>';
});
$target.html(html);
}
});
});
我试过了
$.each(data, function(entry) {
然后数据返回undefined,我在IE8中使用了什么?
解决方法:
传递给jQuery.each回调的第一个参数是数组中值的索引;第二个参数是实际值.
尝试使用:
$.each(data, function(i, entry) {
// your code here
});