gpt4 book ai didi

JavaScript 和 jQuery

转载 作者:行者123 更新时间:2023-11-28 10:25:39 25 4
gpt4 key购买 nike

正在 jsp 中创建图表应用程序...正在将表单值存储在 javascript 变量中,我需要将这些值传递给 jQuery highchart 变量...请有人帮助我如何做到这一点..

这是我在“home.jsp”中的 javascript 函数:

function printValues(oSel)
{
plant=document.getElementById("plantId");
plant_text=plant.options[plant.selectedIndex].text;
plant_value=document.getElementById("plantId").value;

period=document.getElementById("periodId");
period_text=period.options[period.selectedIndex].text;
period_value=document.getElementById("periodId").value;

interval=document.getElementById("intervalId"); interval_text=interval.options[interval.selectedIndex].text;
interval_value=document.getElementById("intervalId").value;


len=oSel.options.length;
for(var i=0;i<len;i++)
{
if(oSel.options[i].selected)
{
data+="\n"+ oSel.options[i].text + "["+ "\t" + Sel.options[i].value + "]";
}
}
if(data!="")
{
alert("The selected Items are :" + data);
}
else
{
alert("There are no selected items");
}

title=document.chart.chartTitle.value;
}

我的 barchart.jsp 文件有以下代码:

         var chart;
$(document).ready(function() {
$('.barchart').click(function(barTitle) {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
defaultSeriesType: 'column'
},
title: {
text: 'Monthly Average Rainfall'
},
subtitle: {
text: 'Source: WorldClimate.com'
},
xAxis: {
categories: [
'Jan',
'Feb',
'Mar',
'Apr',
'May',
'Jun',
'Jul',
'Aug',
'Sep',
'Oct',
'Nov',
'Dec'
]
},
yAxis: {
min: 0,
title: {
text: 'Rainfall (mm)'
}
},
legend: {
layout: 'vertical',
backgroundColor: '#FFFFFF',
align: 'left',
verticalAlign: 'top',
x: 100,
y: 70,
floating: true,
shadow: true
},
tooltip: {
formatter: function() {
return ''+
this.x +': '+ this.y +' mm';
}
},
plotOptions: {
column: {
pointPadding: 0.2,
borderWidth: 0
}
},
series: [{
name: 'Tokyo',
data: [49.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]

}, {
name: 'New York',
data: [83.6, 78.8, 98.5, 93.4, 106.0, 84.5, 105.0, 104.3, 91.2, 83.5, 106.6, 92.3]

}, {
name: 'London',
data: [48.9, 38.8, 39.3, 41.4, 47.0, 48.3, 59.0, 59.6, 52.4, 65.2, 59.3, 51.2]

}, {
name: 'Berlin',
data: [42.4, 33.2, 34.5, 39.7, 52.6, 75.5, 57.4, 60.4, 47.6, 39.1, 46.8, 51.1]

}]
});
});
});

我需要将这些标题、plant_value、period_value 传递给图表标题、xaxis、yaxis 变量...请有人帮助我如何将 javascript 值传递给 jquery 变量值?

提前致谢

最佳答案

我不确定什么时候会发生什么,但是你不能只使用 title: {text: document.chart.chartTitle.value} 之类的东西吗?这样,您在单击 $('.barchart') 项目时将始终使用图表中的最新数据。

或者,保持 jQuery 表单,title: {text: $('form[name=chart] input[name=chartTitle]').val()}

最后,如果“title”等。是全局变量,可以使用title: {text: title}。请注意,如果在 printValues 设置时尚未将 title 声明为全局变量,则无论如何都会引入全局变量。

关于JavaScript 和 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4406890/

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