1

javascript と jquery の im nubie です。「tipe」の値を変更したい <-(変数) トラフ コンボ ボックス

これはスクリプトです:

tipe = 'report-reg'; //this var that i wanna change
        $(document).ready(function () { //this is javascript for chart
            // prepare the data
            var theme = 'classic';

            var source =
            {
                 datatype: "json",
                 datafields: [
                     { name: 'reqtime', type: 'date'},
                     { name: 'jumlah'}
                ],
                url: 'include/data_chart/data-reg-day.php?type='+tipe //tipe load value from combobox
            };

これはコンボボックスのhtmlです:

<form method="get" action="" name="combobox">
<div>
<select id="combobox" name="combo-box" onchange="tipe=this.value">
    <option>Select report tipe</option>
    <option value="report-reg-perday">Per-day Report</option>
    <option value="report-reg-perweek">Per-week Report</option>
    <option value="report-reg-permonth"> Per-Month Report</option>
</select>
 <div style="width:100%; height:500px" id="jqxChart"></div>
</div>
</form>

私の投稿が混乱していたらごめんなさい。どうもありがとう。

4

2 に答える 2

2
$( "#combobox" ).change(function() {
    tipe = $(this).val();
});
于 2013-11-11T09:09:33.670 に答える