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

34 lines
692 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;
listContent(response);
if (response[lastIndex]['hasCode'])
loadScript('content/js/' + response[lastIndex]['date'] + '.js');
$.ajax({
type: "GET",
url: 'content/html/' + response[lastIndex]['date'] + '.html',
success: function (res) {
appendContent(res);
}
});
}
});