Comme-6ren">
gpt4 book ai didi

c# - 使用 ajax mvc3 .net 将参数传递给 jquery

转载 作者:行者123 更新时间:2023-12-01 08:18:55 26 4
gpt4 key购买 nike

我正在为某个站点建立一个后台,在这里我需要使用ajax从数据库中删除评论,问题是我无法在ajax中删除到jquery后传递我想要隐藏的id。以下是评论代码:

<% foreach (var item in Model) { %>
<div class="row" id = "row<%= item.CommentID %>">
<div class="editor-label detail">Comment</div>
<div class="form-element"><%: Html.DisplayFor(modelItem => item.Text) %></div>
<div class="editor-label detail">Date</div>
<div class="form-element"><%: Html.DisplayFor(modelItem => item.Date) %></div>
<div class="form-element">
<div class="button delete"><%: Ajax.ActionLink("Delete", "Deletecomment", new { id = item.CommentID }, new AjaxOptions { HttpMethod = "POST", OnSuccess = "deleteRow" })%></div>
</div>
</div>
<% } %>

这是 Controller 的代码:

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Deletecomment(int id)
{
cr.Delete(cr.getComment(id)); //cr is the conx to the repository
cr.Save();

return View("Index");
}

这是我的jquery

function deleteRow() {
var url_ = this.url.split("/");
$("#row" + url_[url_.length - 1]).remove();
}

我所做的是获取url并将其拆分以获取数据库中条目的id,然后将其作为id添加到表单中,然后删除该id,但我确信有更好的解决方案

最佳答案

你能不能动态地将id传递给回调:

new AjaxOptions { HttpMethod = "POST", OnSuccess = "function(){ return deleteRow('" + item.CommentID + "');" }

function deleteRow(id) {
$("#row" + id).remove();
}

关于c# - 使用 ajax mvc3 .net 将参数传递给 jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8559197/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com