将 jQuery 对象和 WebMethod 返回值传递给 OnSuccess 函数

发布于 2024-08-27 10:15:14 字数 685 浏览 9 评论 0原文

我正在从此代码调用 WebMethod

if($(this).attr("checked")) {  
..  
MyWebMethod(variable1, variable2, onSuccessFunction);  
}

MyWebMethod 返回一个整数,我想设置 $(this).attr("id") 到返回的整数。基本上,我试图做相当于 MVC Ajax.ActionLink...AjaxOptions {UpdateTargetID =...} 但是,我不知道如何获取对 < code>$(this) 以及返回值。例如,如果我这样做:

MyWebMethod(variable1, variable2, onSuccessFunction($(this)));

我可以成功操作 jQuery 对象,但显然它没有 MyWebMethod 的返回值。或者,方法签名为 onSuccessFunction(returnValue) 的第一个代码块具有来自 MyWebMethod 的正确返回值,但没有我正在查找的 jQuery 对象的概念。我这一切都错了吗?

I am calling a WebMethod from this code:

if($(this).attr("checked")) {  
..  
MyWebMethod(variable1, variable2, onSuccessFunction);  
}

The MyWebMethod returns an integer, and I want to set $(this).attr("id") of the jQuery object above to the returned integer. Basically, I'm trying to do the equivalent of an MVC Ajax.ActionLink...AjaxOptions {UpdateTargetID =...} However, I can't figure out how to get both a reference to $(this) as well as the returned value. For example, if I do:

MyWebMethod(variable1, variable2, onSuccessFunction($(this)));

I can succesfully manipulate the jQuery object, but obviously it doesn't have the return value from the MyWebMethod. Alternatively, the first code block with a method signature of onSuccessFunction(returnValue) has the correct return value from MyWebMethod, but no concept of the jQuery object I'm looking for. Am I going about this all wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

百合的盛世恋 2024-09-03 10:15:14

我不知道第一个示例中的 onSuccessFunction 到底需要什么参数,但类似的东西将是您正在寻找的。

if($(this).attr("checked")) {   
  var el = $(this); 
  MyWebMethod(variable1, variable2, function(x, y z) { onSuccessFunction(x, y, z, el); });   
} 

** 更新 ** 已修复以避免“this”范围问题。

I don't know exactly what parameters the onSuccessFunction in your first example is expecting, but something like this will be what you're looking for.

if($(this).attr("checked")) {   
  var el = $(this); 
  MyWebMethod(variable1, variable2, function(x, y z) { onSuccessFunction(x, y, z, el); });   
} 

** Update ** Fixed to avoid a "this" scoping issue.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文