query等待ajax执行完毕再继续执行下面代码的操作

Jquery等待ajax执行完毕再继续执行下面代码的效果,具体代码如下,其实就是将 jquery ajax 函数的 async 参数设置为 false 即可,该参数默认为 true:

  1. $(document).ready(function(){
  2. loadphpernote();
  3. window.open('http://www.phpernote.com');
  4. });
  5. function loadphpernote(){
  6. var url='http://www.phpernote.com/ajax.php';
  7. var data='action=list';
  8. jQuery.ajax({
  9. type:'post',
  10. url:url,
  11. data:para,
  12. async:false,//false代表只有在等待ajax执行完毕后才执行window.open('http://www.phpernote.com')语句
  13. success:function (msg){
  14. $('#articleList').html(msg);
  15. }
  16. });
  17. }
上一篇:spring-boot-2.0.3之quartz集成,数据源问题,源码探究


下一篇:HBase 3、HBase练习题