Uncaught ReferenceError: $ajax is not defined问题解决
1. 先看看引入jquery是否成功。
加入以下代码
<script>
if (typeof jQuery != "undefined") {
alert("加载jquery成功");
} else {
alert("加载jquery失败");
}
</script>
如果引入成功,进行下一步,如果失败,就重新找一个别的jquery.min.js引入。
2. 很简单,你的“$ajax”中间没有点,应该是“$.ajax”如下:
$.ajax({
method: "get",
url: "./showStudents.php",
success: function (result) {
alert(result);
},
error: function (msg) {
alert(msg);
},
});