<legend id='d50Kc'><style id='d50Kc'><dir id='d50Kc'><q id='d50Kc'></q></dir></style></legend>

  • <small id='d50Kc'></small><noframes id='d50Kc'>

    1. <i id='d50Kc'><tr id='d50Kc'><dt id='d50Kc'><q id='d50Kc'><span id='d50Kc'><b id='d50Kc'><form id='d50Kc'><ins id='d50Kc'></ins><ul id='d50Kc'></ul><sub id='d50Kc'></sub></form><legend id='d50Kc'></legend><bdo id='d50Kc'><pre id='d50Kc'><center id='d50Kc'></center></pre></bdo></b><th id='d50Kc'></th></span></q></dt></tr></i><div id='d50Kc'><tfoot id='d50Kc'></tfoot><dl id='d50Kc'><fieldset id='d50Kc'></fieldset></dl></div>
        <bdo id='d50Kc'></bdo><ul id='d50Kc'></ul>
        <tfoot id='d50Kc'></tfoot>

        Ajax jquery异步返回值

        Ajax jquery async return value(Ajax jquery异步返回值)

        <tfoot id='jtxfi'></tfoot>

        <small id='jtxfi'></small><noframes id='jtxfi'>

          <i id='jtxfi'><tr id='jtxfi'><dt id='jtxfi'><q id='jtxfi'><span id='jtxfi'><b id='jtxfi'><form id='jtxfi'><ins id='jtxfi'></ins><ul id='jtxfi'></ul><sub id='jtxfi'></sub></form><legend id='jtxfi'></legend><bdo id='jtxfi'><pre id='jtxfi'><center id='jtxfi'></center></pre></bdo></b><th id='jtxfi'></th></span></q></dt></tr></i><div id='jtxfi'><tfoot id='jtxfi'></tfoot><dl id='jtxfi'><fieldset id='jtxfi'></fieldset></dl></div>

                • <bdo id='jtxfi'></bdo><ul id='jtxfi'></ul>
                    <tbody id='jtxfi'></tbody>
                  <legend id='jtxfi'><style id='jtxfi'><dir id='jtxfi'><q id='jtxfi'></q></dir></style></legend>

                • 本文介绍了Ajax jquery异步返回值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我怎样才能让这段代码返回值不冻结浏览器.
                  你当然可以用新方法重写它.

                  how can i make this code to return the value without freezing the browser.
                  You can rewrite this with new method of course.

                  function get_char_val(merk)
                  {  
                      var returnValue = null;
                      $.ajax({   
                                  type:       "POST",
                                  async:      false,   
                                  url:            "char_info2.php",   
                                  data:   { name: merk },   
                                  dataType: "html",  
                                  success:    function(data)
                                                      {
                                                          returnValue = data;
                                                      } 
                          }); 
                      return returnValue;
                  }
                  var px= get_char_val('x');
                  var py= get_char_val('y');
                  

                  在其他时间我需要从 php 文件中获取至少 20 个变量.

                  推荐答案

                  这是不可能的.
                  Javascript 在 UI 线程上运行;如果您的代码等待服务器回复,则浏览器必须保持冻结状态.

                  This is not possible.
                  Javascript runs on the UI thread; if your code waits for the server to reply, the browser must remain frozen.

                  相反,您需要使用回调返回值:

                  Instead, you need to return the value using a callback:

                  function get_char_val(merk, callback)
                  {  
                      var returnValue = null;
                      $.ajax({   
                                  type:       "POST",
                                  url:            "char_info2.php",   
                                  data:   { name: merk },   
                                  dataType: "html",  
                                  success:    function(data) {
                                      callback(data);
                                  } 
                          }); 
                  }
                  
                  get_char_val('x', function(px) { ... });
                  get_char_val('y', function(py) { ... });
                  

                  请注意,这两个回调将以不可预知的顺序运行.

                  Note that the two callbacks will run in an unpredictable order.

                  您应该修改您的设计,以便可以在一个 AJAX 请求中获取所有二十个值.
                  例如,您可以获取一个逗号分隔的值列表,并返回一个 JSON 对象,如 { x: "...", y: "..." }.

                  You should modify your design so that you can get all twenty values in a single AJAX request.
                  For example, you can take a comma-separated list of values, and return a JSON object like { x: "...", y: "..." }.

                  这篇关于Ajax jquery异步返回值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Youtube iframe api not triggering onYouTubeIframeAPIReady(Youtube iframe api 未触发 onYouTubeIframeAPIReady)
                  How to detect window size and then do something with jquery switch statement(如何检测窗口大小然后用 jquery switch 语句做一些事情)
                  jquery Using ranges in switch cases?(jquery 在切换案例中使用范围?)
                  switch statement in Jquery and List(Jquery 和 List 中的 switch 语句)
                  Switch-Case for strings in Javascript not working as expected(Javascript 中字符串的 Switch-Case 未按预期工作)
                  Switch case with conditions(带条件的开关盒)
                  <tfoot id='S8cR1'></tfoot>
                  <i id='S8cR1'><tr id='S8cR1'><dt id='S8cR1'><q id='S8cR1'><span id='S8cR1'><b id='S8cR1'><form id='S8cR1'><ins id='S8cR1'></ins><ul id='S8cR1'></ul><sub id='S8cR1'></sub></form><legend id='S8cR1'></legend><bdo id='S8cR1'><pre id='S8cR1'><center id='S8cR1'></center></pre></bdo></b><th id='S8cR1'></th></span></q></dt></tr></i><div id='S8cR1'><tfoot id='S8cR1'></tfoot><dl id='S8cR1'><fieldset id='S8cR1'></fieldset></dl></div>

                    <legend id='S8cR1'><style id='S8cR1'><dir id='S8cR1'><q id='S8cR1'></q></dir></style></legend>

                      <tbody id='S8cR1'></tbody>

                        • <bdo id='S8cR1'></bdo><ul id='S8cR1'></ul>
                          • <small id='S8cR1'></small><noframes id='S8cR1'>