我使用 jQuery 来删除和淡化项目容器。此代码将删除和淡化 div 类 box2。我想这样做以淡化 div 类 box1。无需将删除链接更改为 box1。
如果有人能指出我如何做到这一点,非常合适。提前感谢。
<div class="box1">
<div class="box2">
<a href="#" id="1" class="delete">x</a>
</div>
</div>
JavaScript
<script type="text/javascript">
$(document).ready(function () {
$('#load').hide();
});
$(function () {
$(".delete").click(function () {
$('#load').fadeIn();
var commentContainer = $(this).parent();
var id = $(this).attr("id");
var string = 'id=' + id;
$.ajax({
type: "POST",
url: "delete.php",
data: string,
cache: false,
success: function () {
commentContainer.slideUp('slow', function () {
$(this).remove();
});
$('#load').fadeOut();
}
});
return false;
});
});
</script>