我实现了一个ajax beforeSend函数,其中有一个confirm(),问题是在代码中,如果我想在请求确认时删除第一个值,但是如果我单击第二个,第三个或第四个,它就可以了到方法中的URL并执行命令
这是页面
<table>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Button</th>
</tr>
</thead>
<tbody>
<?php
$stmt = $DB_con->prepare("SELECT * FROM people");
$stmt->execute();
while($row=$stmt->fetch(PDO::FETCH_ASSOC))
{?>
<tr><td><?php echo $row['id']; ?></td>
<td><?php echo $row['name']; ?></td>
<form method="post" id="del" action="delete.php">
<input type='hidden' id='pid' name='pid' value='<?php echo $row['id']; ?>'>
<button id="send" type="submit">Delete</button>
</form>
</th>
</tr>
<?php
}
?>
这是ajax功能
$(document).ready(function (e) {
$("#del").on('submit',(function(e) {
e.preventDefault();
$.ajax({
url: "delete.php",
type: "POST",
data: new FormData(this),
contentType: false,
cache: false,
processData:false,
beforeSend:function(){
return confirm("Are you sure you want to delete this?");
},
success: function(data)
{
alert("Delete Successful");
window.location.reload();
},
error: function(e)
{
}
});
}));
});
而无论我要删除哪一条记录,它都应该询问,它应该要求确认。
精慕HU
阿晨1998