循环-JS的问题

时间:2011-05-14 15:32:23

标签: javascript loops dojo for-loop

我有许多代码,如:

<script type="text/javascript">
dojo.query("body").delegate("#input0 > select.estatistica", "onchange", function(evt){
        dojo.xhrPost({
            url: "drop2.php",
            handleAs: "json",
            postData: "data=" + $(this).val(),
            preventCache: true,
            load: function(json) {
                $m0 = [];

                for (var i = 1; i < 10; i++) {
                    $m0.push(parseFloat(json[i]["valor" + i]));
                }
                dojo.addOnLoad(refreshChar0);

            }
        });
    });
</script>


<script type="text/javascript">
dojo.query("body").delegate("#input1 > select.estatistica", "onchange", function(evt){
        dojo.xhrPost({
            url: "drop2.php",
            handleAs: "json",
            postData: "data=" + $(this).val(),
            preventCache: true,
            load: function(json) {
                $m1 = [];

                for (var i = 1; i < 10; i++) {
                    $m1.push(parseFloat(json[i]["valor" + i]));
                }
                dojo.addOnLoad(refreshChart1);
            }
        });
    });
</script>

我试过这个循环,但我不确定脚本。可能我有语法错误。

<script type="text/javascript">
for(x=0; x<10; x++) {
dojo.query("body").delegate("'#input'+x+'> select.estatistica'", "onchange", function(evt) {
        dojo.xhrPost({
            url: "drop2.php",
            handleAs: "json",
            postData: "data=" + $(this).val(),
            preventCache: true,
            load: function(json) {
                $m+x = [];

                for (var i = 1; i < 10; i++) {
                    $m+x.push(parseFloat(json[i]["valor" + i]));
                }
                dojo.addOnLoad(refreshChart+x);
            }
        });
    });
}
</script>

感谢

2 个答案:

答案 0 :(得分:0)

根据$m+x的外观,我猜你正试图动态创建一个变量,例如$m0$m9,基于从0到10的迭代。你可以'我在Javascript中这样做,因为我知道它会给你一个错误。我建议不要创建动态变量,而不是根据x的索引填充数组中的值。

这是:

var $m = [];
for(x=0; x<10; x++)
{
    // some of your codes here ... 

    // make $m[x] an array
    if (typeof $m[x] == "undefined")
        $m[x] = [];

    // some of your codes here...

    for (var i = 1; i < 10; i++)
    {
        // of course you need to change this to what you need to push
        $m[x].push(i);
    }

}

console.log($m[0]); // [1, 2, 3, 4, 5, 6, 7, 8, 9]

所以基本上$m将是一个带数组的数组。我不知道我的猜测是否正确,但我希望它能给出一个想法。

答案 1 :(得分:0)

要动态创建变量名,您必须使用括号表示法

例如:this['$m'+x]window['$m'+x]会创建一个名为$m1的变量x = 1

尝试:

window['foo' + 'bar'] = 'hello';
alert(foobar);