我在尝试通过ajax脚本发送id时遇到了一些麻烦, 我正在尝试创建一个地址簿,当您选择一个联系人时,它会将所有信息加载到另一个页面中,而ajax脚本会将此页面加载到主页中。一切正常,除了发送联系人的ID。有一些代码:
$.ajax({
url: "select.php",
dataType: "html",
data: {id: id},
success: function(Result) {
$('#result').html(Result);
}
});
PHP
$id = $_POST['id'];
echo $id;
$sql = "SELECT * FROM ca11 WHERE contact_id= $id";
有没有人有想法?
答案 0 :(得分:1)
您需要添加您正在提出的请求类型,作为您的问题,您可以按以下方式发送帖子请求
$.ajax({
type: "POST",
url: "select.php",
dataType: "html",
data: {id: id},
success: function(Result) {
$('#result').html(Result);
}
});
有关详细信息,请参阅此链接http://api.jquery.com/jQuery.post/