这是一个不需要jQuery的示例:
function loadJSON(path, success, error){ var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function() { if (xhr.readyState === XMLHttpRequest.DONE) { if (xhr.status === 200) { if (success) success(JSON.parse(xhr.responseText)); } else { if (error) error(xhr); } } }; xhr.open("GET", path, true); xhr.send();}
称呼为:
loadJSON('my-file.json', function(data) { console.log(data); }, function(xhr) { console.error(xhr); });
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)