gpt4 book ai didi

jquery - ajax.actionlink 替换与替换

转载 作者:行者123 更新时间:2023-12-03 22:13:33 27 4
gpt4 key购买 nike

我在 ASP.NET-MVC 应用程序的 View 中使用 Ajax.ActionLink,并且我正在使用 InsertionMode.Replace,但我看到还有一个 ReplaceWith 选项。两者有什么区别?其中一个是否比另一个替代更多/更少的东西?我需要将要替换的 div 完全替换为部分 View 。

我在 Google 上找不到任何比较

最佳答案

Replace 将用新内容替换内容。 ReplaceWith 将替换整个元素。

<body>
<div id="myResults">
<p> Results will be displayed here </p>
</div>
</body>

来自ajax的响应

<span>This is the result</span>

使用Replace选项定位myResults

<body>
<div id="myResults">
<span>This is the result</span>
</div>
</body>

使用 ReplaceWith 选项定位 myResults

<body>
<span>This is the result</span>
</body>

关于jquery - ajax.actionlink 替换与替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26587392/

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