1

我想将“ID”发送到 JS 函数,然后再次将相同的 ID 从 JS 函数发送到 php 函数。请告诉我我的代码有什么问题!

<script type="text/javascript">
function deleteclient(ID){    //I receive the ID correctly until now!
var x = "<?php deleteclient11('ID');?>";
return false;
}
</script>

<?php
function deleteclient11($x)
{
echo "$x";
}
?>
4

1 回答 1

7

您需要使用 AJAX,使用 jQuery 或其他库很容易,所以我将使用 jQuery 进行演示。

javascript

var deleteClient = function(id) {
    $.ajax({
        url: 'path/to/php/file',
        type: 'POST',
        data: {id:id},
        success: function(data) {
            console.log(data); // Inspect this in your console
        }
    });
};

.php 文件

<?php

    if (isset($_POST['id'])) {

        deleteClient11($_POST['id']);

        function deleteClient11($x) {
           // your business logic
        }

    }

?>

更多信息:jQuery.ajax()

于 2013-10-03T01:00:39.100 回答