gpt4 book ai didi

javascript - 变化 : change value trough Combo box

转载 作者:行者123 更新时间:2023-11-30 17:47:11 25 4
gpt4 key购买 nike

我是 javascript 和 jquery 中的 nubie。我想改变我的“tipe”<-(variable) trough 组合框的值

这是脚本:

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>

对不起,如果我的帖子乱七八糟。非常感谢。

最佳答案

$( "#combobox" ).change(function() {
tipe = $(this).val();
});

关于javascript - 变化 : change value trough Combo box,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19902467/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com