0

我正在<div>通过 Ajax 附加一个。<div>在通过 Ajax 动态附加后,可以应用 jQuery 函数和 CSS 。得到正确附加,<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.
                }
            });

视图.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;
                })()
            }]
        });
    });

});

我希望这个 highchart 在 portlet-content 中,但我做不到。我哪里错了?

.on( events [, selector ] [, data ], handler(eventObject) )

可以ready是活动吗?

4

1 回答 1

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 中执行此操作,请确保在附加结果后调用该函数。

功能 3

   $( ".portlet-header .ui-icon" ).click(function() {
      $( this ).toggleClass( "ui-icon-minusthick" ).toggleClass( "ui-icon-plusthick" );
      $( this ).parents( ".portlet:first" ).find( ".portlet-content" ).toggle();
    });

每次创建元素时都不需要调用此函数,而是有一个称为事件委托的概念。事件委托的前提是 委托事件的优点是它们可以处理来自以后添加到文档中的后代元素的事件。但是为了应用事件委托,事件处理程序只绑定到当前选择的元素;它们必须在您的代码调用时存在于页面上* 从您的 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();
    });
于 2013-09-07T20:35:19.587 回答