Skip to content

Instantly share code, notes, and snippets.

@yankchina
Created February 3, 2015 06:01
Show Gist options
  • Save yankchina/1d96fdc5af0b84860b54 to your computer and use it in GitHub Desktop.
Save yankchina/1d96fdc5af0b84860b54 to your computer and use it in GitHub Desktop.
jQuery
(function($) {
$(function() {
$('#returnData').html('');
$.ajax({
url: "./api/list.php",
success: function(data) {
$("#returnData").html(JSON.stringify(data));
}
});
}); // end of document ready
})(jQuery); // end of jQuery name space
@yankchina
Copy link
Author

jQuery Ajax 做 get 的样例数据

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment