我对 jQuery 有一些问题,创建后不会删除 div ......这是代码
$('.del').on('click', function() {
//delItem = $(this);
var data_id = $(this).attr('rel');
$.post('index/xhrDelete', {'data_id': data_id}, function(o) {
//delItem.parent().remove(); // i have tried this too
$(this).parent().remove();
}, 'json');
return false;
});
它删除了 div 但是当我手动刷新时......但我想不刷新页面这里是 html....
<div>
ccc
<a class="del" href="#" rel="5">X</a>
</div>
<div>
test
<a class="del" href="#" rel="21">X</a>
测试 X