<script>
$('.alert_success').hide();
$('.alert_error').hide();
$('.trash').click(function(){
var r=confirm("wil delete")
if (r==true)
{
var id = $(this).attr('id');
$.post('ajax/del_art.php',{id:id},function(data){
$("#concon").fadeOut(1000);
$('.alert_success').fadeIn(1000);
$('.alert_success').html(data);
$('.alert_success').delay(5000);
$('.alert_success').fadeOut(1000);
});
}
});
当我单击删除时,代码会工作一次(id #concon)并停止。怎么能#concon
代替$(this)
?
我希望在按删除时删除和隐藏该项目。
http://behiramp.com/admin/article.php
尝试删除任何帖子,它会正常工作。尝试删除下一个帖子,它会正常工作。
现在我麦克
<script>
$('.alert_success').hide();
$('.alert_error').hide();
$('.trash').click(function(){
var r=confirm("سوف يتم حذف الموضوع الى الابد!")
if (r==true)
{
id = $(this).attr('id');
$.post('ajax/del_art.php',{id:id},function(data){
if($(".concon").hasClass(data))
{
$(".concon").fadeOut(1000);
$('.alert_success').fadeIn(1000).html(data).delay(3000).fadeOut(1000);
}
});
}
});
在 hasclass 中,它用“日期”而不是内容数据返回,.hasClass() 如何用变量返回