本文介绍了指定一个JavaScript函数来AjaxOptions的onSuccess财产引发错误 - ASP.NET MVC的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用的是Ajax.ActionLink助手生成一个链接,删除一条记录。这是code:

  Ajax.ActionLink(删除图像,DeleteImage,新{ID = item.Id},
                                               新AjaxOptions {列举HTTPMethod =删除的onSuccess =测试()})

我分配一个JavaScript函数(测试())到OnSucess财产,因为我想要做一些JQuery的东西,但是当我点击删除链接此错误消息引发

in the MicrosoftAjax.js file (Line 5, Column 62099). If I remove the OnSuccess property, everything works fine (even if the Test() function is empty, the same error is raised). Thanks for your help!

解决方案
OnSuccess = "Test()" 

you have to write it like this it is a callback...

OnSuccess = "Test"

这篇关于指定一个JavaScript函数来AjaxOptions的onSuccess财产引发错误 - ASP.NET MVC的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-16 01:15