1. 程式人生 > >關於form表單,ajax和$http傳輸資料

關於form表單,ajax和$http傳輸資料

1,使用form表單提交資料時會跳轉頁面,即會將整個頁面提交重新整理,而ajax和$http和php進行資料互動只是頁面的部分更新;

ajax可以進行同步傳輸,即async="false",$http只能進行非同步通訊;

2,from表單與php互動:

<form  action="new.php" >

<input  type="text">

<input  type="submit">

</form>

3,ajax與php互動上傳內容:

var  ajax=new  XMLHttpRequest();

ajax.open("get","new.php", true);

ajax.send();

$("input").val(responseText);

4,$http與php互動:

var  app=angular.module("my",[ ]);

app.constroller("hello",function($scope,$http){

$http.get("new.php").then(function(txt){

$scope.name=txt.data;})

})