如何在JQuery中将JSON数组作为var

时间:2018-03-12 10:57:31

标签: javascript jquery json

我迷失在图表上工作。 我从MySQL那里得到了一个关于PHP的查询,已经工作了,它输出$ data作为JSON。示例:.: [[1,10],[2,25]...]

如何使用此代码?:

$(document).ready(function() {
var data1 = [[1,10],[2,25]...];
var data2 = [[1,1],[2,20]...];
$("#flot-dashboard-chart").length && $.plot($("#flot-dashboard-chart"), 
[data1, data2],
{
    series: {
        lines: {
            show: false,
            fill: true
        },
        splines: {
            show: true,
            tension: 0.4,
            lineWidth: 1,
            fill: 0.4
        },
        points: {
            radius: 0,
            show: true
        },
        shadowSize: 2
    },
    grid: {
        hoverable: true,
        clickable: true,
        tickColor: "#d5d5d5",
        borderWidth: 1,
        color: '#d5d5d5'
    },
    colors: ["#1ab394", "#1C84C6"],
    xaxis:{
    },
    yaxis: {
        ticks: 4
    },
    tooltip: false
    }
  );    
)};

0 个答案:

没有答案