日期:2014-05-16 浏览次数:20380 次
<script type="text/javascript"> function a(){ $.post("test1.php", function(data){ b(); }); } function b(){ $.post("test2.php", function(data){ c(); }); } function c(){ alert('ok'); } a(); </script>