作為一個教程,還是差了些,很多人沒有學過liunix命令,而且也遠不如windows alt shift看的更加明白,關鍵是ajax的原理應該先說明
2017-03-24
描述:
請求 test.php 網頁,忽略返回值。
jQuery 代碼:
$.get("test.php");描述:
請求 test.php 網頁,傳送2個參數,忽略返回值。
jQuery 代碼:
$.get("test.php", { name: "John", time: "2pm" } );
請求 test.php 網頁,忽略返回值。
jQuery 代碼:
$.get("test.php");描述:
請求 test.php 網頁,傳送2個參數,忽略返回值。
jQuery 代碼:
$.get("test.php", { name: "John", time: "2pm" } );
2017-03-13