0

このクラスを使用して、Yes/No アラートを設定しています。

http://myclabs.github.io/jquery.confirm/

これは私のコードです:

var currentId;

$(".confirm").click(function() {
    currentId = $(this).attr('id');
});

$(".confirm").confirm({
    text: "Are you sure?",
    confirm: function(button) {
                    //if I alert here currentId, it alerts right
        $.post("receive.php", { currentId: "id"} )
        .done(function(data) {
            alert(data); //NOTHING!!!
        });
    },
    cancel: function(button) {
        $('.modal hide fade').css("display", "none");
    },
    confirmButton: "Yes",
    cancelButton: "No!",
    post: true
});
});

受信.php

<? echo $_POST['id']; ?>
4

1 に答える 1

4
$.post("receive.php", { currentId: "id"} )

する必要があります

$.post("receive.php", { id: currentId } )
于 2013-05-14T15:20:11.313 に答える