我在 jquery 中有一个 ajax 函数调用一个 php 文件来对我的数据库执行一些操作,但结果可能会有所不同。无论成功与否,我都想输出不同的消息
我有这个 :
echo '<button id="remove_dir" onclick="removed('.$dir_id.')">remove directory</button>';
<script type="text/javascript">
function removed(did){
$.ajax({
type: "POST",
url: "rmdir.php",
data: {dir_id: did},
success: function(rmd){
if(rmd==0)
alert("deleted");
else
alert("not empty");
window.location.reload(true);
}
});
}
</script>
还有这个
<?php
require('bdd_connect.php');
require('functions/file_operation.php');
if(isset($_POST['dir_id'])){
$rmd=remove_dir($_POST['dir_id'],$bdd);
}
?>
我的问题是,如何在 $.ajax 中返回 $rmd,我可以提醒正确的消息?
谢谢您的回答