jQuery/$.post()

解説 メソッドpostAjax通信

$.post(url, data, success)

sample1
sample1code
$(function(){
  $("#s1Btn").click(function(){
	$.post("data.php", function(data){
	  $("#s1Div").html(data);
	});
  });
});