SCRIPT438:对象不支持属性或方法'forEach'

时间:2013-04-05 21:23:29

标签: javascript ajax json internet-explorer-8

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) { 

然后数据然后返回undefined,我在IE8中使用了什么我缺少什么?

1 个答案:

答案 0 :(得分:6)

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

尝试使用:

$.each(data, function(i, entry) {
    // your code here
});