wolegca.github.io/js/index.js

36 lines
783 B
JavaScript
Raw Normal View History

2019-09-20 12:31:47 +08:00
// $.ajax({
// type:"GET",
// url:"https://javacloud.bmob.cn/0104a7ae840e3555/counter?name=wcx",
// async:true,
// success:function(res){
// message.alert('提示',res);
// },
// error:function(){
// message.alert('提示','error!');
// }
// });
$.ajax({
type: "GET",
url: "content.json",
dataType: "json",
success: function (response) {
var lastIndex = response.length - 1;
2019-09-20 12:44:30 +08:00
var i;
for(i in response){
2019-09-20 12:46:42 +08:00
$('.sidebar').append($('<div>').append(response[i]['title']));
2019-09-20 12:44:30 +08:00
}
2019-09-20 12:31:47 +08:00
if (response[lastIndex]['hasCode'] == true)
loadScript('content/js/' + response[lastIndex]['date'] + '.js');
$.ajax({
type: "GET",
url: 'content/html/' + response[lastIndex]['date'] + '.html',
success: function (response) {
appendContent(response);
}
});
}
});