这是我的代码
<script>
$(document).ready(function() {
// delete the entry once we have confirmed that it should be deleted
$('.delete').click(function() {
var parent = $(this).closest('tr');
$.ajax({
type: 'POST',
url: 'delete.php',
data: 'ajax=1&delete=' + $(this).attr('id'),
success: function() {
parent.fadeOut(300,function() {
parent.remove();
});
}
});
});
$('.delete').confirm({
});
});
</script>
我的问题是为什么 delete.php 没有执行?它在同一个文件夹中,我需要在这个文件中输入绝对 url 吗?但最好的是表中的行正在删除,但 php 文件没有执行。第二个问题是为什么这段代码没有这一行就不能工作:
$('.delete').confirm({
});
在 php 文件中,我知道它是否已执行:
<script>
alert('aaaa');
</script>
甚至我已经改变它echo 'something';
但仍然无法正常工作