0
我正在開發MVC應用程序並使用剃刀語法。如何從視圖運行時刪除數據?
在這個應用程序中,我給評論設施。
我已經添加了一個局部視圖,它從數據庫中加載評論/記錄。
在下圖中,我們可以看到名爲run-time for employee index view的評論框。
問題是,當用戶刪除評論時,它會從數據庫中刪除,但如何將其從屏幕上刪除而不重定向到任何頁面?
我婉刪除刪除評論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>
感謝ebastian,這將很好地工作,但我應該寫什麼'commentId:getCommentId(commentBlock)'? – user1668543
您可以添加到.ParentBlock自定義屬性data-comment-id,當您將註釋設置爲註釋id($('。ParentBlock')。attr('data-comment-id',123))時,然後在getCommentId(parentBlock)中,您只需返回parentBlock.attr('data-comment-id')。 –
在代碼中您可以在$(「。ParentBlock」)之後加載評論。slideDown(「slow」);把這個:$('。ParentBlock')。attr('data-comment-id',data.Id) –