你好我是Javascript
的新手,我想知道点击锚链接时召唤ajax
电话的正确方法是什么。我将以下代码添加到我的网页:
$('#add').click(function() {
Uncaught TypeError: Cannot call method 'click' of null
$.ajax({
type : 'POST',
url : 'post.php',
dataType : 'json',
data: {
email : $('#val').val()
},
});
return false;
});
上面的代码给出了以下错误:
Uncaught TypeError: Cannot call method 'click' of null test.html:94
(anonymous function)
可能出现什么问题?
答案 0 :(得分:0)
您的jQuery文件似乎未正确加载或丢失。
尝试包含jQuery文件,如。
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>