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);