0
我收到以下錯誤:
的ReferenceError:$ is not defined
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<style>
#navBox {
width: 150px;
height: 150px;
background-color: #004C7E;
}
</style>
<script src="//code.jquery.com/jquery-1.9.1.js"></script>
<script src="//code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
</head>
<body>
<div id="navBox"></div>
<script>
$(document).click(function() {
$("#navBox").effect("shake");
});
</script>
</body>
</html>
我使用了過時的jQuery的版本?我試圖按照本指南進行操作:http://api.jqueryui.com/shake-effect/
您是否將其視爲本地文件?網址是否以'file://開頭? –
你是否運行這個C:驅動器,所以url看起來像'file:// ...'?如果是,不要這樣做,使用Apache或IIS建立本地服務器。很簡單。 – epascarello
檢查你的網絡標籤,應該很容易針對你的問題 –