0

我正在<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函数(生成实时图表)

$(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({
            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() {

但它没有用。我哪里出错了?

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

});

}
4

2 回答 2

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 查询。

您可能需要调整它以添加错误处理。还值得注意的是,如果您正在进行简单的查找,使用 GETload()可能会更容易......

于 2013-09-08T05:52:00.727 回答
0

对于问题 1-

将你的highChart函数代码放在一般函数中,并在ajax成功后附加div后调用它。

$("#column1").make_highCharts();

回答你的问题-2

还有 $(document).on("ready", handler),自 jQuery 1.8 起已弃用。这与 ready 方法的行为类似,但如果 ready 事件已经触发并且您尝试 .on("ready") 绑定的处理程序将不会被执行。以这种方式绑定的就绪处理程序在上述其他三种方法的任何绑定之后执行。

对于 .on 中的事件(事件,..

请访问:http ://api.jquery.com/on/

于 2013-09-08T05:53:54.333 回答