kata

$(function() {
  //
});

ajax kata

var data = {type: type};
$.ajax({
  type: 'POST',
  cache: false,
  data: data,
  url: 'sample',
  dataType: 'json',
  success: function(res){
    // console.log(res);
  },
  error: function(res){
    alert('エラーが発生しました');
  }
});