我正在使用$ .getJSON将Google表格数据附加到我的HTML文档中。数据会在除Internet Explorer之外的所有浏览器中流入,我不确定为什么。我已经阅读了有关该问题的其他主题,但找不到解决方案–由于附加问题,我的问题似乎有所不同。任何帮助将不胜感激!
特殊:我正在使用jQuery v2.1.3,当我尝试通过浏览器在Internet Explorer中加载页面时,这是弹出的错误消息–
window.onload中的异常:错误:发生了错误JSPlugin.3005
这是我正在使用的特定脚本:
var profile = $('#profile');
$().ready(getSchool);
function getSchool() {
$.getJSON('https://spreadsheets.google.com/feeds/list/1t_k4uQt04StZqiGqcoBAti5xauCtOr0_pT4FCtV8mTQ/1/public/values?alt=json')
.done(function(data) {
var arr = Array.from(data.feed.entry);
profile.html('');
arr.forEach(function(e) {
var info = `HTML GOES HERE`
profile.append(info);
})
})
.fail(function() {
alert('Error retrieving school data');
})
}