我使用默认确认框删除带有ajax的记录,并且它可以正常工作。 这是工作代码 http://pastebin.com/HZxDVAgU 但是,当我使用alertify时,它会删除记录,但不会隐藏它。 这是非工作代码 http://pastebin.com/7q1sH5gM
这是隐藏记录的代码
$(this).parents(".record").animate({ backgroundColor: "#fbc7c7" }, "fast")
.animate({ opacity: "hide" }, "slow");
答案 0 :(得分:0)
在alertify回调this
内部引用窗口,以引用被调用者对象,您可以使用存储原始元素引用的element
变量。
代码:
element.parents(".record").animate({
backgroundColor: "#fbc7c7"
}, "fast")
.animate({
opacity: "hide"
}, "slow");