2015-05-25 99 views
1

我使用jqwidgets窗戶跳隙和圖表
JavaScript不工作後調用函數

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

這是窗口canvasJS和我做一個圖表,其上點擊標籤上會調用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就會得到結果,但之後在圖表上我的「顯示/隱藏」窗口,或單擊不工作了。

有什麼建議嗎? 謝謝!

回答

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 
    }); 
} 
+0

謝謝。這是一半的工作。現在我的功能'點擊圖表'它的工作,但小工具不會關閉/打開(頁面中沒有人)後,我點擊圖表,並在

看到一些結果,所以我認爲腳本現在'阻止'現在 – VladutZzZ