@@ -28,8 +28,8 @@
data:{},
dataType:'json',
success:function(res){
- $('title').append(res.data.title);
- $('h4').append(res.data.title);
+ $('title').html(res.data.title);
+ $('h4').html(res.data.title);
$('body').append(res.data.content);
}
})