wolegca.github.io/js/index.js
2019-09-20 12:44:30 +08:00

36 lines
764 B
JavaScript

// $.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;
var i;
for(i in response){
$('.sidebar').append($('<div>').append(i));
}
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);
}
});
}
});