Skip to content

Instantly share code, notes, and snippets.

@shigwata
Created May 2, 2014 09:22
Show Gist options
  • Select an option

  • Save shigwata/74ebaf4c42a5c40612c4 to your computer and use it in GitHub Desktop.

Select an option

Save shigwata/74ebaf4c42a5c40612c4 to your computer and use it in GitHub Desktop.
AjaxでHTMLを挿入サンプル
$.ajax({
type: "GET",
url: "ajax.php",
cache: false,
dataType: "html",
data: {
p1: "hoge",
p2: "fuga"
}
}).done(function(html){
$("#results").html(html);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment