我有正常工作的情况如下:
$(document).ready(function() {
get_data_for_chart();
function get_data_for_chart() {
$.ajax({
url: 'get_data.aspx?rand=' + Math.random(),
type: 'GET',
dataType: 'json',
error: function(xhr, status, error) {
console.log(status);
console.log(xhr.responseText);
},
success: function(results) {
var chart1;
chart1 = new Highcharts.Chart( {
chart: {
renderTo: 'portlet_content_18',
defaultSeriesType: 'column'
}
});
}
});
}
});
当HTML看起来是这样的:
<div id="portlet_content_18">
用户可以动态地选择其中portlet
他/她想要在屏幕上。 S /他也可以选择具有相同portlet
在屏幕上一次以上比较的原因。
因此,如果HTML最终变为:
<div id="portlet_content_18">
<div id="portlet_content_18">
只有第一个div
获取与图表填充,而第二个保持空白。 我怎样才能解决这个问题呢?