-2
我正在學習jQuery的第一步(我對JavaScript已經有點熟悉了),但我似乎無法獲得將jQuery文件嵌入到我的index.html頁面。我得知「jQuery的」是,如果jQuery是嵌入到頁面中出現在HTML 只有有效的變量,所以我做了下面的代碼來測試jQuery的鏈接:我無法讓jQuery嵌入我的頁面
<!doctype html>
<html>
<head>
<title>Learning JavaScript</title>
<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script="text/javascript" src="jquery.min.js"></script>
</head>
<body>
<script>
if (typeof jQuery !="undefined") {
alert('jQuery is installed!');
} else {
alert('jQuery is NOT installed!');
}
</script>
</body>
</html>
當然,我想要一個警告出現,說「jQuery已安裝!」但由於else語句,我得到了「jQuery未安裝」警報。換句話說,變量「jQuery」顯示爲「未定義」。正如你可以從我的代碼中看到的,我鏈接到了我的文件夾中的一個文件,但是你也可以鏈接到jQuery的url,在這裏可以找到:http://code.jquery.com/jquery-1.11.2.min.js無論哪種方式,我都無法使它工作。我究竟做錯了什麼?
for one: