ajax.actionlink 并禁用 MVC 2 中的 onSuccess 链接
我有一个场景,其中 ajax 操作链接文本为“应用”。单击此链接并调用操作时,我希望禁用该链接并将其更改为“应用程序成功”。
我该怎么做?
谢谢
I have a scenario where the ajax actionlink text is 'Apply'..On clicking this and calling an action, i want the link to be disabled and to be changed to 'Application successful'.
How can i do this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 OnSuccess:
然后实现该功能:
顺便说一下,有什么理由使用侵入性的 MS AJAX 而不是 jquery 和普通的
Html.ActionLink
:然后在单独的 js 中:
You could use OnSuccess:
and then implement the function:
By the way is there any reason for using the intrusive MS AJAX instead of jquery and normal
Html.ActionLink
:And then in a separate js: