我想将'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";
}
?>
答案 0 :(得分: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()