我通过Ajax追加<div>
。在通过Ajax动态追加后,有jQuery函数和CSS应用于<div>
。 <div>
被正确附加,但jQuery函数和CSS不会获得<div>
的加载。我该怎么做?
AJAX代码
$.ajax({
type: "POST",
url: "/dashboard/",
data : { 'widgets_list' : widgets_list },
success: function(result){
console.log(widgets_list);
$("#column1").append(result); // div gets appended.
}
});
view.py
HTMLstr += "<div class='portlet'><div class='portlet-header'>Live Graph</div>" + \
"<div class='portlet-content' id='live_graph' style='height: 270px margin: 0 auto'>" + \
"</div></div>"
return HttpResponse(HTMLstr)
需要应用的jQuery functions
是: -
$(function() {
$( ".column" ).sortable({
connectWith: ".column",
handle: ".portlet-header"
});
$( ".portlet" ).addClass( "ui-widget ui-widget-content ui-helper-clearfix ui-corner-all" )
.find( ".portlet-header" )
.addClass( "ui-widget-header ui-corner-all" )
.prepend( "<span class='ui-icon ui-icon-minusthick'></span>")
.end()
.find( ".portlet-content" );
$( ".portlet-header .ui-icon" ).click(function() {
$( this ).toggleClass( "ui-icon-minusthick" ).toggleClass( "ui-icon-plusthick" );
$( this ).parents( ".portlet:first" ).find( ".portlet-content" ).toggle();
});
});
and 1 more jQuery function.
CSS
<style>
body { min-width: 520px; }
.column { width: 170px; float: left; padding-bottom: 100px;}
.portlet { margin: 0 1em 1em 0; }
.portlet-header { margin: 0.3em; padding-bottom: 4px; padding-left: 0.2em; }
.portlet-header .ui-icon { float: right; }
.portlet-content { padding: 0.4em; max-height: 270px;}
.ui-sortable-placeholder { border: 1px dotted black; visibility: visible !important; height: 50px !important; }
.ui-sortable-placeholder * { visibility: hidden; }
</style>
更新的问题
HTML
<div class="column span4" id="column1">
<div class="portlet">
<div class="portlet-header">Line Chart</div>
<div class="portlet-content" id="basic_line" style="height: 270px"></div>
</div>
</div>
jQuery功能
$(function () { // I replaced this line with $("#portlet").on('click', '#live_graph',function() {.... But it didnt work!!
$(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;
})()
}]
});
});
});
我希望这个高图位于portlet内容中,但我无法做到。我哪里错了?
.on( events [, selector ] [, data ], handler(eventObject) )
ready
可以成为活动吗?
答案 0 :(得分:4)
我将按你列出的功能细分它。
$( ".column" ).sortable({
connectWith: ".column",
handle: ".portlet-header"
});
这非常特定于jQueryUI,但为了使Function 1起作用,您需要使用http://api.jqueryui.com/sortable/#method-refresh。由于您的sortable中的某些项目稍后会被加载,因此您需要引用sortable来识别这些项目。
所以你会有像
这样的代码success: function(result){
// div gets appended.
$("#column1").append(result);
// refresh sortable items now that markup is appended to columns
$( ".column ).sortable( "refresh" );
}
$( ".portlet" ).addClass( "ui-widget ui-widget-content ui-helper-clearfix ui-corner-all" )
.find( ".portlet-header" )
.addClass( "ui-widget-header ui-corner-all" )
.prepend( "<span class='ui-icon ui-icon-minusthick'></span>")
.end()
.find( ".portlet-content" );
是否有理由不在 view.py 中生成此标记,因为view.py已生成动态标记。如果您更喜欢在jQuery中执行此操作,请确保在附加结果后调用该函数。
$( ".portlet-header .ui-icon" ).click(function() {
$( this ).toggleClass( "ui-icon-minusthick" ).toggleClass( "ui-icon-plusthick" );
$( this ).parents( ".portlet:first" ).find( ".portlet-content" ).toggle();
});
每次创建元素时都不需要调用此函数,而是有一个称为事件委托的概念。 event delegation的前提是委托事件的优势在于它们可以处理来自稍后添加到文档的后代元素的事件。但是为了应用事件委托,事件处理程序仅绑定到当前选定的元素;在您的代码调用* 时,它们必须存在于页面上
从你的ajax调用来看,当结果被追加时,函数似乎已经存在"#column_1"
。
事件委托的一个例子是:
// This tells #column_1 that if a descendant element matches the selector
// '.portlet-header .ui-icon' then invoke the function
$('#column_1').on('click', '.portlet-header .ui-icon' ).,function() {
$( this ).toggleClass( "ui-icon-minusthick" ).toggleClass( "ui-icon-plusthick" );
$( this ).parents( ".portlet:first" ).find( ".portlet-content" ).toggle();
});