echarts一些笔记

console.log();  浏览器显示

 

 

$.ajax({
url : "ajax/echartWelcome.action",
type : "post",
dataType : "json",
data : {

},
beforeSend : function() {
$('#warning').empty();
$(".ssspinner").show();
},
async : true,
success : function(result) {
console.log(result);
$(".ssspinner").hide();
showChart(result.result);
},
});

 

 

var resultJson = JSON.parse(resultStr);

posted @ 2017-09-08 11:12  上台阶  阅读(167)  评论(0编辑  收藏  举报