アットウィキロゴ

php03

function sample(){
$.ajax({
    url: "ren.php",
    dataType: "text",
    cache: false,
    success: function(data, textStatus){
      var str=data;
        $("#memo").html(str);
    },
    error: function(xhr, textStatus, errorThrown){}
  }); 
 
 
}
 
最終更新:2015年03月08日 18:49