如何在javascript中将变量从一个函数传递给另一个函数

时间:2012-05-26 10:19:41

标签: javascript

var chart;
var d = new Array();

function click() {
    d = document.getElementById('graph:hi').value;
    alert(d);
}
var c = new Array(66, 15, 2.5, 21.9, 25.2, 23.0, 22.6, 21.2, 19.3, 16.6, 14.8);
alert(c);
jQuery(document).ready(function (e) {
    chart = new Highcharts.Chart({
        chart: {
            renderTo: 'container',
            defaultSeriesType: 'spline',
            ignoreHiddenSeries: false
        },
        title: {
            text: 'Height Report'
        },
        subtitle: {
            text: ''
        },
        xAxis: {
            categories: ['0', '0.5', '1.5', '2.5', '3.5', '4.5', '5.5', '6.5', '7.5', '8.5', '9.5', '10.5', '11.5', '12.5', '13.5', '14.5', '15.5', '16.5', '17.5', '18.5', '19.5', '20.5', '21.5', '22.5', '23.5', '24.5', '25.5', '26.5', '27.5', '28.5', '29.5', '30.5', '31.5', '32.5', '33.5', '34.5', '35.5']
        },
        yAxis: {
            title: {
                text: 'Percentage'
            },
            labels: {
                formatter: function () {
                    return this.value + '%';
                }
            }
        },
        tooltip: {
            formatter: function () {
                return '' + this.x + ': ' + this.y;
            }
        },
        plotOptions: {
            spline: {
                marker: {
                    radius: 3,
                    lineColor: '#666666',
                    lineWidth: 1
                }
            }
        },
        series: [{
            name: 'Pecentile 3',
            data: c
        }, {
            name: 'Pecentile 10',
            data: d
        }]
    });
});
来自XHTML的

我得到了常规值并且在click()函数中得到了。 jQuery(document).ready(function(e){})是一个绘制代码的图。我想将click()中的d值传递给jquery函数。但我无法获取jquery函数中的值。谢谢你< / p>

1 个答案:

答案 0 :(得分:2)

你的代码在概念上很奇怪。

为什么在文档准备好之前执行一些代码,在jQuery(document).ready(); ??

中执行一些代码

如果你把所有内容放在后一个函数中,经过适当的修改,一切都可以工作。

我建议:

  1. 将所有内容插入Query(document).ready();函数
  2. 而不是使用function click(...)我会使用更多jquery样式,也就是说:$('graph:hi').click(function(){WRITE THE CODE});

  3. 执行此操作时,d将在您的范围内添加全局变量,因此您不会遇到正在遇到的问题