gpt4 book ai didi

asp.net-mvc - 如何在asp.net mvc中通过ajax更新特定的div数据

转载 作者:行者123 更新时间:2023-12-04 06:52:33 24 4
gpt4 key购买 nike

如何在asp.net mvc中通过ajax更新特定的div数据

最佳答案

你可以看看UpdateTargetId属性(property):

Controller :

public ActionResult SomeAction()
{
// you could return a PartialView here if you need more complex HTML fragment
return Content("<span>some content</span>", "text/html");
}

看法:
<div id="result"></div>
<%= Ajax.ActionLink(
"Update div test",
"SomeAction",
new AjaxOptions { UpdateTargetId = "result" }
) %>

关于asp.net-mvc - 如何在asp.net mvc中通过ajax更新特定的div数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2911453/

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