未捕获的参考错误:意外的令牌}

时间:2013-11-17 10:50:12

标签: javascript jquery html django

<script type="text/javascript">
    $(function () {
    var plot = $.plot($("#content"), [{
        color: '#6B6B84',
        label: 'normal one',
        data: [
            [
                [10, 0],
                [13, 5]
            ]
        ]
    }, {
        color: '23641E',
        label: 'modified',
        data:
    }], {
        xaxis: {
            mode: "time",
            timeformat: "%d/%m/%y"
        },
        grid: {
            hoverable: true,
            autoHighlight: true
        }
    });
});
</script>

以上代码在Chrome中显示“未捕获的参考错误:意外的令牌}”。我已经定义了一个id = content的div元素。上面的代码是使用“Flot”绘制图形。非常感谢你guyz帮助!我在这里使用django。

1 个答案:

答案 0 :(得分:3)

&#39; ave重新格式化了您的代码,使其更易于阅读。您现在可以看到第二个data:元素没有值,这是您的错误的来源。

$(function() {
    var plot = $.plot($("#content"), [
        { 
            color:'#6B6B84',
            label:'normal one',
            data: [
                [[10, 0], [13, 5]]
            ]
        },
        {
            color:'23641E',
            label: 'modified',
            data: 
        }
    ], 
    {
        xaxis: {
            mode:"time",
            timeformat: "%d/%m/%y"
        },
        grid: {
            hoverable: true,
            autoHighlight: true
        }
    }
    );
});