0

タイトルで述べたように、Javascript 変数を JQuery に渡したいと考えています。方法を見つけるために一日中費やしましたが、何も得られませんでした。ajax を使用して変数を PHP に渡そうとしたところ、応答データを取得できました。しかし、それをハイチャートに渡したいとき、うまくいきませんでした。誰かがこれを行う方法を教えてもらえますか? 私は非常に感謝します。

//this is the ajax I used to send the request to PHP , I can get the data in data_ajax.
function chooseCategory(mat_id){
            var ajax = ajaxObj("POST", "test.php");
        ajax.onreadystatechange = function() {
        if(ajaxReturn(ajax) == true) {
             data_ajax = ajax.responseText;
             alert(data_ajax);}
                }

                ajax.send("id=" + material_id);
        }

    //this is part of the jquery code, the charts can not get any data from variable data_ajax.
     $(function () {                                            
$('#container3').highcharts({
    ...
    ...
     series: [{  type: 'line', name: '#numbers:', data: data_ajax
4

3 に答える 3