0

我正在开发 MVC 应用程序并使用剃刀语法。

在这个应用程序中,我提供评论功能。

我添加了一个局部视图,它从数据库加载评论/记录。

在下图中,我们可以看到称为员工索引视图运行时的注释框。

问题是,当用户删除评论时,它会从数据库中删除,但是如何在不重定向到任何页面的情况下将其从屏幕上删除?

我想顺利删除已删除的评论 div 标签...

请看图...

在此处输入图像描述

我的代码是...

@model  IEnumerable<CRMEntities.Comment>

@{


     <div class="ParentBlock">


    @foreach (var item in Model)
    {
        <div class="OwnerClass" id="OwnerName" data-comment-id="@item.Id">


         <span class="EmpName"> @Html.ActionLink(item.Owner.FullName, "Details", "EMployee", new { id = item.OwnerId }, new { @style = "color:#1A6690;" })</span>

           @Html.DisplayFor(ModelItem => item.CommentDateTime)

          <span class="EmpName"><button type="button" class="deleteComment">Delete</button></span>



        <p class="CommentP">
           @Html.DisplayFor(ModelItem => item.CommentText)
        </p>

        <br />
            <a class="Delete222" style="cursor:move;display:none;">DeleteNew</a>
        <br />

     </div>

    }


     <p class="p12">

      </p>



</div>

      <p id="ClassPara" class="ShowComments" onclick="chkToggle()">Show All Comments</p>

}


   @Html.TextArea("Comment", "", 5, 80, "asdsd")


    <input type="button" value="Add Comment" id="AddCommentButton"/>                         
    <input type="button" value="Clear" onclick="clearText()"/>                    

    <br />


</body>
</html>



<script src="../../Scripts/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
    $(document).ready(function () {
        $(".deleteComment").click(function () {
            alert("asd");
            var commentBlock = $(this).parent('.OwnerClass');
            commentBlock.hide('slow')

     });
    });


    $(document).ready(function () {

        $('.OwnerClass').hover(function () {
            $('.Delete222', this).show();
        }, function () {
            $('.Delete222').hide();


        });

    });

</script>
4

1 回答 1

1

与其生成操作链接,不如在此处放置按钮 或 。将 JavaScript 函数绑定到此按钮上的单击事件,在此函数中进行 ajax 调用以从数据库中删除评论并使用 Jquery 隐藏正确的 div。

<span class="EmpName"><button type="button" class="deleteComment">Delete</button></span>

JavaScript:

$('.deleteComment').click(function () 

        {
            var commentBlock = $(this).parent('.ParentBlock');
            $.ajax({

                type: 'post',
                url: '/Comment/DeleteComment',
                dataType: 'json',
                data:
                { 

                 commentId: getCommentId(commentBlock )

                },
                success: function (data) {

                    commentBlock.hide('slow')

                }

            });
        });

更新:

由于问题更新和此答案下方的评论而更新:

$(document).ready(function () {
    $(".deleteComment").click(function () {

        var commentBlock = $(this).parent('.OwnerClass');

        $.ajax({
            type: 'post',
            url: '/Comment/DeleteComment',
            dataType: 'json',
            data:
            { 

             commentId: commentBlock.attr('data-comment-id')

            },
            success: function (data) {

                commentBlock.hide('slow')

            }

        });

 });
});
于 2012-09-21T10:36:02.150 回答