下面的代码显示了一个混乱的图表,
function() displayGoogleChart() {
/* displays chart */
}
$("#chartDiv").hide();
displayGoogleChart();
$("#chartDiv").show();
但是这段代码显示得很好,如下所示:
$("#chartDiv").hide();
$("#chartDiv").show();
displayGoogleChart();
为什么会这样?