wolegca.github.io/main.js

11 lines
205 B
JavaScript
Raw Normal View History

2019-09-15 21:53:54 +08:00
$.ajax({
type:"GET",
url:"https://javacloud.bmob.cn/0104a7ae840e3555/counter?name=wcx",
async:true,
success:function(res){
2019-09-17 18:24:20 +08:00
message.alert(res);
2019-09-15 21:53:54 +08:00
},
error:function(){
2019-09-17 18:24:20 +08:00
message.alert('error!');
2019-09-15 21:53:54 +08:00
}
});