我是jQuery新手。要查看我的第一個hello世界頁面,我有下面的代碼,但結果是沒有任何提示的裸頁面!它似乎無法從我在我的html頁面的相同目錄中下載的jQuery-1.11.0中讀取。jQuery,初學者你好世界頁面
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Hello World</title>
<script type="text/javascript" src="jquery-1.11.0.min.js"> </script>
<script type="text/javascript">
$("document").ready(function() {
alert ("Hello World");
});
</script>
</head>
<body>
</body>
</html>
它沒有提醒嗎? – Incognito
你試過讓你的HTML有效嗎? – TimWolla
@Kuma是沒有警報。 – Amir