为什么我的代码中出现错误

时间:2016-11-30 07:32:25

标签: javascript jquery jquery-ui

出于某种原因,我父母的某处出现了错误,但我似乎无法弄清楚任何人都可以帮助我。错误从第二个if语句开始 我的一个闭合括号或左括号是我的错。 if语句很好。谢谢你提前

                if (series[1].length > 0) {
                    var chart2 = _content.find("#Chart_Pie_2_" + i).get(0);
                    $(chart2).parents(".charts").addClass("double");
                    Chartist.Pie(chart2, {
                        labels: labels[1],
                        series: series[1]
                    }, {
                        fullWidth: true,
                        donut: true,
                        showLabel: false,
                        plugins: [
                            Chartist.plugins.legend(),
                            Chartist.plugins.tooltip({
                                appendToBody: true,
                                tooltipFnc: function (meta) {
                                    return meta;
                                }
                            })
                        ]


                    });

                    if (series[1].length > 0) {
                        var chart3 = _content.find("#Chart_Pie_3_" + i).get(0);
                        $(chart3).parents(".charts").addClass("double");
                        Chartist.Pie(chart3, {
                            labels: labels[2],
                            series: series[2]
                        }, {
                            fullWidth: true,
                            donut: true,
                            showLabel: false,
                            plugins: [
                                Chartist.plugins.legend(),
                                Chartist.plugins.tooltip({
                                    appendToBody: true,
                                    tooltipFnc: function (meta) {
                                        return meta;
                                    }
                                })
                            ]


                        })
                    }

1 个答案:

答案 0 :(得分:1)

试试这个,

您错过了第一次}

关闭brakcet if
if (series[1].length > 0) {
    var chart2 = _content.find("#Chart_Pie_2_" + i).get(0);
    $(chart2).parents(".charts").addClass("double");
    Chartist.Pie(chart2, {
        labels: labels[1],
        series: series[1]
    }, {
        fullWidth: true,
        donut: true,
        showLabel: false,
        plugins: [
                  Chartist.plugins.legend(),
                  Chartist.plugins.tooltip({
                      appendToBody: true,
                      tooltipFnc: function (meta) {
                          return meta;
                      }
                  })
                  ]


    });
}// this was missing!
    if (series[1].length > 0) {
        var chart3 = _content.find("#Chart_Pie_3_" + i).get(0);
        $(chart3).parents(".charts").addClass("double");
        Chartist.Pie(chart3, {
            labels: labels[2],
            series: series[2]
        }, {
            fullWidth: true,
            donut: true,
            showLabel: false,
            plugins: [
                      Chartist.plugins.legend(),
                      Chartist.plugins.tooltip({
                          appendToBody: true,
                          tooltipFnc: function (meta) {
                              return meta;
                          }
                      })
                      ]


        });
    }