我正在使用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会得到结果,但之后我的'显示/隐藏'窗口或点击图表不再有效。
有什么建议吗? 谢谢!
答案 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
});
}