旧版本的jQuery:
$.ajax({
url: "post.php",
data: {
id: 123
},
method: "GET",
dataType : "json",
done: function( json ) {
$( "<h1>" ).text( json.title ).appendTo( "body" );
$( "<div class=\"content\">").html( json.html ).appendTo( "body" );
}
})
当前版本的jQuery(将起作用):
{{1}}
无效:
{{1}}