$target.remove() can remove the element,but now I want the process to be down with some feel animation,how to do it?
$target.remove()
If you need to hide and then remove the element use the remove method inside the callback function of hide method.
This should work
$target.hide("slow", function(){ $(this).remove(); })