2017-02-13 81 views
0

工作,我通過數據陣列試圖循環,這工作得很好:Data.ForEach不是在IE

data.forEach((entry) => { 
    if(entry[1]) { 
     window.optionsAv = 1; 
     window.optionsAmnt = window.optionsAmnt + 1; 

     $('#timeswrap').show(); 
     $('#tijden').append("<option class='single-tijd' data-optieId='" + entry[3] + "'>" + entry[0] + "</option>"); 
    } else { 
    } 
}) 

但它似乎並沒有在Internet Explorer中工作。 什麼是更好的解決方案?

+1

究竟是什麼錯誤?你在說什麼版本的Internet Explorer?例如,IE8和IE Edge之間存在巨大差異。 – Pointy

+0

哪個版本的IE? – Laazo

+0

http://caniuse.com/#search=foreach –

回答