将大量变量传递给jQuery中的函数

时间:2018-08-15 13:07:02

标签: jquery function variables

我有很多应在不同功能中使用的变量:

public static void isevennumber(int startwith, int endwith) {
    for (int i = startwith; i <= endwith; i++) {
        if (i % 2 == 0)
            System.out.println("you have entered an even number which is " + i);
        else if (i == startwith)
            System.out.println("you haven't entered an even number");
    }
}

我只想定义一次这些变量,然后在函数中使用它们:

var one = 20
var two = 30
var three = 40

实现此目标的最佳方法是什么?

1 个答案:

答案 0 :(得分:2)

您必须尝试以下方法:

<script>
    var a=1,b=2,c=3,d=4,e=5,...;
    //Edited
    //you can use like following code
    function xyz(){
         console.log(a);
    }
</script>

然后在函数中使用它。
已编辑
您不需要传递函数,它们是全局变量,只需按其名称使用即可。 如图所示。