我正在尝试使用ajax删除来删除记录,当单击这些记录时,会在发送请求之前进行确认。记录被删除,它可以工作,但问题是在删除之后,视图中没有任何更改,直到我手动重新加载页面之后。我想在对话框中单击"确定"后在视图中显示结果
我的ajax代码:
$(document).ready(function() {
if($('.confirm_delete').length) {
$('.confirm_delete').click(function(){
var result = confirm('Are you sure you want to delete this?');
$('#flashMessage').fadeOut();
if(result) {
$.ajax({
type:"POST",
url:$(this).attr('href'),
data:"ajax=1",
dataType: "json",
success:function(response){
}
});
}
return false;
});
}
});
视图中:
echo $this->Js->link('Delete', array('controller' => 'publications', 'action'=>'delete', $publication['Publication']['id']),
array('escape' => false, 'class'=>'confirm_delete'));
$(document).ready(function(){
if($('.confirm_delete').length) {
$id=$(this).attr('id');
$('.confirm_delete').click(function(){
var result = confirm('Are you sure you want to delete this?');
$('#flashMessage').fadeOut();
if(result) {
$.ajax({
type:"POST",
url:$(this).attr('href'),
data:"ajax=1",
dataType: "json",
success:function(response){
}
});
$('#row'+$id).remove();
}
return false;
});
}});
由于某种原因,$(this).attr('id')不起作用。。。如何获取所选元素的id以将其删除我认为:
<div class="box_detail" id="row<?php echo $publication['Publication']['id']; ?>">
这不是CakePHP问题,只是JS问题。如果删除回调成功而没有返回任何错误,则必须从DOM树中删除相关内容。使用jquery,可以通过对任何要删除的选择器调用remove()来完成此操作。