(function($){
var GETCLASSES="http://imoocnote.calfnote.com/inter/getClasses.php";
$.ajax({
url:GETCLASSES,
data:{curPage:1},
success:function(data){
var t=$("#class-template").html();
var f=Handlebars.compile(t);
var h=f(data.data);
console.log(h);
$("#classes").html(h);
}
})
})(jQuery);