我是PHP和Ajax的新手,我需要一些帮助
这是我的一些代码
<div class="dropdown-item noti-title">
<h6 class="m-0"><span class="float-right"><a href="" onClick="clearNotify()" class="text-dark"><small>Clear All</small></a> </span>Notification</h6>
</div>
当单击清除时,通知未清除它仍然显示,并且在数据库表中有一个字段是清除的,在这种情况下显示的通知是明确的= 0和清除= 1在此条件通知中没有显示。
此 ajax 调用代码
<script>
function clearNotify()
{
$.ajax({
url: 'ajaxfiles/clear_notifications.php',
type: 'post',
success: function(output) {
}
});
}
</script>
clear_notifications.php
<? include '../common/config.php';
session_start();
$user_id = $_SESSION["admin"];
if($_POST)
{
$clear_notifications = $db->updateCondition(array("isclear"=>"1"),PREFIX."users_notification","user_id like '%$user_id%'");
}
?>
AJAX 似乎没问题,请检查您的clear_notifications.php。