无法在使用PHP生成的动态锚点上触发jQuery.ajax()

时间:2014-05-10 15:14:21

标签: javascript php jquery ajax

我正在开发的功能有点问题。我在一个使用数据库查询动态生成的表行列表中有一个锚<a>。我想要做的就是删除数据库中的一条记录,调用php脚本而不重新加载页面。

这是我的功能:

$(document).on("click",".scollega", function () {
    var id_professionista = $(this).attr('id');
    var id_geocentro = $("#selezione_centri option:selected").val();
    var link_to_trigger = "scollega_prof.php?id_professionista="+id_professionista+"&id_geocentro="+id_geocentro;
    alert(link_to_trigger); 
    //the code above is working fine, I got an alert with corret url to trigger
    e.preventDefault();
    $.ajax({
            async: true,
            cache: false,
            url: link_to_trigger,
            type: 'GET',
            contentType: false,
            processData: false,
            success:function(){
                alert("Record rimosso");
                var string = ('scripts/server_processing.php?id_geocentro='+id_geocentro);
                table.ajax.url(string).load();
                table.reload();    
            },
            error:function (){
                alert("Si è verificato un errore");
            }
    });
});  

PHP代码:

<?php 
session_start();
session_cache_limiter('nocache');
if(!isset($_SESSION['mail'])){
   header("location:login.php");
}
include("include/connect.php");
$conn=mysql_connect($HOST, $USER, $PASSWORD);
$db_ok=mysql_select_db($DB, $conn);

$query="DELETE FROM centri_operativi WHERE id_professionista='".$_GET['id_professionista']."' AND id_geocentro='".$_GET['id_geocentro']."'";

$ris=mysql_query($query, $conn);

mysql_close($conn);
?>

似乎没错,但每次点击我的按钮,都没有任何反应。我无法看到
既不是错误信息。
希望有人能帮助我。谢谢你们。

贾科莫。

1 个答案:

答案 0 :(得分:0)

$.ajax中添加数据属性 Javascript中的示例

$.ajax({
            async: true,
            cache: false,
            url: "scollega_prof.php",
            type: 'GET',
            data: {id_professionista: id_professionista, id_geocentro: id_geocentro},
            success:function(){
                alert("success");
            },
            error:function (){
                alert("error");
            }
});