单击一个按钮,我想捕获一个表单的数据并使用 ajax、json 将其发送到一个 php 页面。现在,只有当我注释掉我的 AJAX 部分时,单击按钮才会出现警报“hello hello”。当我通过取消注释来包含 ajax 部分时,我不仅没有收到任何错误,而且我的“hello hello”警报也没有出现。我觉得这很奇怪。为什么会这样?
这是我的ajax:
<script>
$(document).ready(function () {
$("#btn").click( function() {
alert('hello hello');
/* Coomenting starts here
$.ajax({
url: "connection.php",
type: "POST",
data: {
id: $('#id').val(),
name: $('#name').val(),
Address: $('#Address').val()
}
datatype: "json",
success: function (status)
{
if (status.success == false)
{
alert("Failure!");
}
else
{
alert("Success!");
}
}
});
*/
//commenting ends here.
//basically i just commented out the ajax portion
});
});
</script>