我正在动态生成<div>
我希望在生成时应该应用jQuery函数,但它不起作用。我尝试了.on
方法,但它不能按我想要的方式工作。我要应用该功能的<div>
是claas= portlet-content and id= live_graph
,其父<div>
属于班级portlet ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'>
我哪里出错了?
动态生成的<div>'s
HTMLstr += "<div class='portlet ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'>"+ \
"<div class='portlet-header ui-widget-header ui-corner-all'><span class='ui-icon ui-icon-minusthick'>"+\
"</span>Live Graph</div>" + \
"<div class='portlet-content' id='live_graph' style='height: 270px margin: 0 auto'>" + \
// Want to call the function when the above <div> is generated
"</div></div>"
return HttpResponse(HTMLstr)
jQuery函数(Genereating Live Chart)
$(function () {
$(document).ready(function() {
Highcharts.setOptions({
global: {
useUTC: false
}
});
var chart;
$('#live_graph').highcharts({
chart: {
type: 'spline',
animation: Highcharts.svg, // don't animate in old IE
marginRight: 10,
events: {
load: function() {
// set up the updating of the chart each second
var series = this.series[0];
setInterval(function() {
var x = (new Date()).getTime(), // current time
y = Math.random();
series.addPoint([x, y], true, true);
}, 1000);
}
}
},
title: {
text: 'Live random data'
},
xAxis: {
type: 'datetime',
tickPixelInterval: 150
},
yAxis: {
title: {
text: 'Value'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
formatter: function() {
return '<b>'+ this.series.name +'</b><br/>'+
Highcharts.dateFormat('%Y-%m-%d %H:%M:%S', this.x) +'<br/>'+
Highcharts.numberFormat(this.y, 2);
}
},
legend: {
enabled: false
},
exporting: {
enabled: false
},
series: [{
name: 'Random data',
data: (function() {
// generate an array of random data
var data = [],
time = (new Date()).getTime(),
i;
for (i = -19; i <= 0; i++) {
data.push({
x: time + i * 1000,
y: Math.random()
});
}
return data;
})()
}]
});
});
});
Ajax代码
$.ajax({
type: "POST",
url: "/dashboard/",
data : { 'widgets_list' : widgets_list },
success: function(result){
console.log(widgets_list);
$("#column1").append(result); // div gets appended.
}
});
这是我尝试过的: -
而不是
$(function () { in the jQuery function
我将其替换为: -
$('.portlet').on('ready', '#live_graph',function() {
但它不起作用。我哪里出错了?
问题2 .on( events [, selector ] [, data ], handler(eventObject) )
on
ready
可以成为活动吗?
这就是我试过的
AJAX成功函数
success: function(result){
console.log(widgets_list);
$("#column1").append(result);
$(".column").sortable("refresh");
$("#column1").generate_live_graph();
}
jQuery函数
function generate_live_graph(){
$(function () {
$(document).ready(function() {
Highcharts.setOptions({
global: {
useUTC: false
}
});
var chart;
$('#live_graph').highcharts({
chart: {
type: 'spline',
animation: Highcharts.svg, // don't animate in old IE
marginRight: 10,
events: {
load: function() {
// set up the updating of the chart each second
var series = this.series[0];
setInterval(function() {
var x = (new Date()).getTime(), // current time
y = Math.random();
series.addPoint([x, y], true, true);
}, 1000);
}
}
},
title: {
text: 'Live random data'
},
xAxis: {
type: 'datetime',
tickPixelInterval: 150
},
yAxis: {
title: {
text: 'Value'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
formatter: function() {
return '<b>'+ this.series.name +'</b><br/>'+
Highcharts.dateFormat('%Y-%m-%d %H:%M:%S', this.x) +'<br/>'+
Highcharts.numberFormat(this.y, 2);
}
},
legend: {
enabled: false
},
exporting: {
enabled: false
},
series: [{
name: 'Random data',
data: (function() {
// generate an array of random data
var data = [],
time = (new Date()).getTime(),
i;
for (i = -19; i <= 0; i++) {
data.push({
x: time + i * 1000,
y: Math.random()
});
}
return data;
})()
}]
});
});
});
}
答案 0 :(得分:0)
$(function(){ });
与$(document).ready(function(){ });
相同,对于初学者来说,那里你有一些冗余。
on()
应该应用于在任何时候都不会被替换的最近的父元素。
您可以简化您正在做的事情:
$.post({
"/dashboard/",
{ 'widgets_list' : widgets_list },
function(result){
console.log(widgets_list);
$("#column1").append(result); // div gets appended.
$('#live_graph').highcharts( /* ... rest of the init code */ );
}
});
这假设还有其他东西(比如一个按钮)将用于触发图表的创建。通过将init代码放在post()
的回调函数中,您的代码将一直等到它有响应来创建图表。在它之前调用append
应该确保元素存在并且可以由HighCharts查询。
您可能希望调整此项以添加错误处理。值得注意的是,如果您正在进行简单的查找,那么load()
的GET可能会更容易......
答案 1 :(得分:0)
问题1 -
在一般函数中输入highChart函数代码,并在ajax成功后附加div后调用它。
$("#column1").make_highCharts();
回答你的问题-2
还有$(document).on(“ready”,handler),从jQuery 1.8开始不推荐使用。这与ready方法的行为类似,但如果ready事件已经触发并且您尝试.on(“ready”),则不会执行绑定处理程序。绑定此方式的就绪处理程序将在上述其他三种方法绑定后执行。
在.on中的事件(事件,..