为了从服务器恢复数据,我使用 XMLHttpRequest,我的代码是这样的(它工作正常)
window.onload = function getArtists() {
xmlhttpLoad=new XMLHttpRequest();
xmlhttpLoad.onreadystatechange=function() {
if (xmlhttpLoad.readyState==4 && xmlhttpLoad.status==200) {
// put data in an invisible HTML elem
}
}
}
现在我想使用一个特定的库,但它要求在文档 document.onload 被触发之前加载这些数据。我怎样才能做到这一点?我可以使用上面的代码,但在加载数据之前阻止 HTML 解析?我的意思是
<head>
<script>
// block parsing until data are loaded
// put data from server in a variable
</script>
<script src="newLib.js"></script>
<head>