ajax举例

  • Post author:
  • Post category:其他



XML/HTML code




?

1
2
3
4
5
6
7
8
9

#Ajax:

$.ajax({




type: "POST",



url: "some.php",



data: "name=John&location=Boston",



success: function(msg){




alert( "Data Saved: " + msg );



}

});










#some.php



PHP code




?

1
2
3
4



$name


=


$_POST


[


'name'


];



$location


=


$_POST


[


'location'


];



$msg


=


$name


+


$localtion


;



echo


$msg


;