4

IE8 支持属性或方法'forEach'

$('.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) { 

然而数据然后返回未定义,我错过了什么才能在 IE8 中工作?

4

1 回答 1

6

传递给jQuery.each回调的第一个参数是数组中值的索引;第二个参数是实际值。

尝试使用:

$.each(data, function(i, entry) {
    // your code here
});
于 2013-04-05T21:27:42.963 回答