試圖做一個簡單的AJAX調用(自學)。我在與html
相同的文件夾中有一個.txt
文件。我在這裏做錯了什麼?謝謝。示例AJAX調用不起作用
<html>
<head>
<script type="text/javascript">
$(document).ready(function(){
$("#poo").submit(function(e){
e.preventDefault(); //stop submit
$.ajax({
type: "GET",
url: "data.txt",
data: "",
success: function(data){
$("#foo").html(data);
document.getElementById("foo").style.display = 'block';
alert('hey');
}
});
});
});
</script>
</head>
<body>
<form id="poo">
<input type="text"> </input>
<input type="submit"> </input>
</form>
<br>
<br>
<div style='display: none;'>
<p id="foo">this shows</p>
</div>
<a href="page.html">Start Over</a>
</body>
</head>
</html>
您是否在控制檯中看到錯誤?你是在服務器上運行還是在本地計算機上運行? –
是的,在我的Chrome控制檯:'未捕獲的ReferenceError:$未定義'的第一行'$(document).ready(function(){' – Kervvv
您是否包含jQuery庫? – Naterade