我在eclipse的HTML页面中使用jQuery编写了一个基本的Hello World应用程序。
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
<script type="text/javascript" src="js/jquery-3.3.1.min.js" ></script>
<script type="text/javascript" >
window.onload = function (){
alert("Window loaded");
}
$(document).ready(function(){
alert("DOM loaded");
})
</script>
</head>
<body>
<p>Hello </p>
</body>
</html>`
我在eclipse中使用过JRE 8。在Chrome上运行后,首先显示“已加载窗口”警告框,然后显示“已加载DOM”。理想情况下应该是相反的。 DOM应首先加载。 如果从google API引用jQuery库,则首先加载DOM。
有人可以帮我这个吗?问题不在于两者之间的比较。