调用函数后,Javascript无法正常工作

时间:2015-05-25 16:56:03

标签: javascript php jquery canvasjs

我正在使用jqwidgets用于windows popout,canvasJS用于图表

$(document).ready(function () {
    $("#jqxwindow1 ").jqxWindow({ height:600, width: 1600, maxWidth: 1600, theme: 'fresh',autoOpen:false  });
});

这是一个窗口,我制作一个图表,点击标签后会调用一个java脚本函数:

function onClick2(e) {
    //$('#test').load(document.URL +  ' #test');
    $(document).ready(function () { /// Wait till page is loaded
        $('#main'+e.dataSeries.testcase).load('index.php?proiect=' + '<?php echo $project; ?>', function () {
            /// can add another function here
        });

    }); //// End of Wait till page is loaded
}

当我点击标签时,我的主div会得到结果,但之后我的'显示/隐藏'窗口或点击图表不再有效。

有什么建议吗? 谢谢!

1 个答案:

答案 0 :(得分:4)

删除$document.ready内的onClick2()

function onClick2(e) {
    //$('#test').load(document.URL +  ' #test');                       
    $('#main' + e.dataSeries.testcase).load('index.php?proiect=' + '<?php echo $project; ?>', function () {
    /// can add another function here
    });
}