由於某種原因,jQuery函數沒有被調用。如果我用window.alert
取出任何jQuery函數,它就可以工作。我不知道我做錯了什麼。Javascript工作,但jQuery沒有,我已經加載了庫
<!DOCTYPE html>
<html>
<head>
<title>Bubble Sort</title>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/base/jquery-ui.css" type="text/css" media="all" />
<script type="text/javascript" src="script.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js"></script>
</head>
<body>
<h1>Bubble Sort</h1>
<h2>Author: Hugo L. Villalobos</h2>
<div></div>
</body>
</html>
$(document).ready(function() {
window.alert("Hello Wold");
})
控制檯中的任何錯誤? – empiric
假設你的代碼在'script.js'中,你將它包含在錯誤的地方 - 它需要在***後包括jQuery.js –