±¾ÎÄʵÀý½²ÊöÁËjqueryʵÏÖajax¼ÓÔس¬Ê±ÌáʾµÄ·½·¨¡£·ÖÏí¸ø´ó¼Ò¹©´ó¼Ò²Î¿¼£¬¾ßÌåÈçÏ£º
index.php
<!doctype html> <html> <head> <meta charset="utf-8"/> <title>¼ÓÔس¬Ê±</title> <script type="text/javascript" src="http://lib.sinaapp.com/js/jquery/1.7/jquery.min.js"></script> </head> <body> <script type="text/javascript"> function load(){ $("#tips").html("¼ÓÔØÖÐ..."); $.ajax({ async:true, cache:false, timeout:8000, type:"POST", url:"result.php", data:{a:'123'}, error:function(jqXHR, textStatus, errorThrown){ if(textStatus=="timeout"){ $("#tips").html("¼ÓÔس¬Ê±£¬ÇëÖØÊÔ"); }else{ alert(textStatus); } }, success:function(msg){ $("#tips").html(msg); } }); } </script> <input type="button" value="µã»÷¼ÓÔØ"/> <div></div> </body> <html>
result.php
<?php //sleep(20); sleep(2); echo $_POST['a'].'test·þÎñÆ÷·µ»Ø½á¹û';
¸ü¶à¹ØÓÚjQueryÏà¹ØÄÚÈݸÐÐËȤµÄ¶ÁÕ߿ɲ鿴±¾Õ¾×¨Ì⣺¡¶jqueryÖÐAjaxÓ÷¨×ܽᡷ¡¢¡¶jQuery form²Ù×÷¼¼ÇÉ»ã×Ü¡·¡¢¡¶jQuery³£Óòå¼þ¼°Ó÷¨×ܽᡷ¡¢¡¶jQuery²Ù×÷jsonÊý¾Ý¼¼ÇÉ»ã×Ü¡·¡¢¡¶jQueryÀ©Õ¹¼¼ÇÉ×ܽᡷ¡¢¡¶jQueryÍÏקÌØЧÓë¼¼ÇÉ×ܽᡷ¡¢¡¶jQuery±í¸ñ(table)²Ù×÷¼¼ÇÉ»ã×Ü¡·¡¢¡¶jQuery³£¼û¾µäÌØЧ»ã×Ü¡·¡¢¡¶jQuery¶¯»ÓëÌØЧÓ÷¨×ܽᡷ¼°¡¶jqueryÑ¡ÔñÆ÷Ó÷¨×ܽᡷ
Ï£Íû±¾ÎÄËùÊö¶Ô´ó¼ÒjQuery³ÌÐòÉè¼ÆÓÐËù°ïÖú¡£
¡¡