我想重定向到ajax中的admin_dashboard页面。我在按钮标签中调用一个函数,并希望重定向到下一页成功response.value被完全删除但我的问题是"已成功删除"消息不会返回,也不会重定向到admin_dashboard.php页面。安居在' 1'在函数中我使用了动态值。对于我使用的样本' 1' myFunction(1)。我在控制台中发现了一个错误。
HTML
<button style="margin-left:10px;" name="delete" onclick="myFunction(1);">Delete</button>
脚本
function myFunction(del) {
var rmvfile = del;
if (confirm("Are you sure you want to Delete the file?") == true) {
if (del != '') {
$.ajax({
type: 'post',
url: 'query9.php',
data: {
rmvfile: rmvfile
},
success: function(msg) {
window.location.href = 'admin_dashboard.php';
}
});
}
}
}
我的php查询页面
<?php
include "config.php";
$s=$_POST['rmvfile'];
$del="delete from requirement where req_id='$s'";
if($del1=mysql_query($del))
{
echo 'Deleted Successfully';
}
答案 0 :(得分:-1)
在php脚本中尝试以下代码:
<?php
include "config.php";
$s=$_POST['rmvfile'];
$del="delete from requirement where req_id='$s'";
if( mysql_query($del) )
{
echo 'Deleted Successfully';
}