从jquery获取返回值获取?

编程入门 行业动态 更新时间:2024-10-25 17:29:07
本文介绍了从jquery获取返回值获取?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在对 get 和 getJSON 进行 jquery 调用,但无法访问回调函数之外的返回值.如何访问返回的数据?

I am making jquery calls to get and getJSON, but cannot access returned values outside of callback function. How can I access the returned data?

var firstid; var nextid; $.get(callUrl, function(data) { // call to add node var n = data.indexOf("id-"); var m = data.indexOf("id-"); firstid = data.substr(n+3,m - (n+3)); nextid = data.substr(m+3); alert("firstid:" + firstid); // returns correct value }); alert("firstid:" + firstid); // returns undefined for firstid

如何在函数外获取 firstid?

how can I get firstid outside the function?

推荐答案

所有 AJAX 调用都是异步的

所以您需要使用回调.任何外部都将返回 undefined.

SO you need to use callbacks. anything outside that will return undefined.

$.get(callUrl, function(data) { // call to add node var n = data.indexOf("id-"); var m = data.indexOf("id-"); firstid = data.substr(n+3,m - (n+3)); nextid = data.substr(m+3); doSomethingWithFirst(firstid); }); function doSomethingWithFirst(f) { //NOW do something }

更多推荐

从jquery获取返回值获取?

本文发布于:2023-10-11 22:27:21,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1483019.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:返回值   jquery

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!