-2
function showEditDialog(regID){
        $.post("getGiftDetail.php", 
                {reg_id: regID },
                function(data) {});

}

Ajaxで「getGiftDetail.php」を呼び出しているのですが、このphpファイルが呼び出されません。私を助けてください!なぜこれが機能しないのですか?

4

1 に答える 1

-2

index.html

<script>
    $(function(){
        function showEditDialog(regID){
            $.post("getGiftDetail.php", {reg_id: regID }, function(data) {});
        }
        showEditDialog(5);
    });
</script>

jquery をインクルードし、firebug/developers コンソールを使用することを忘れないでください。

于 2012-07-25T09:29:37.270 に答える