0

我想动态设置变量名称,我一直在尝试:

var iframes = $('iframe').filter(function (index) {
                return index == 0 || $(this).attr("current") == "no";
              })
        if(iframes.length >0){ //if one of the iframes hasnt got current set as current, use it
            var theSuffix = iframes.attr('id').split('_').pop();
            window['thisPreview'+theSuffix] = $fi.prev(".image-preview");
            $hidden.closest(".file-upload-form").find(".variable-hidden").attr('value',theSuffix);
        }

我想要一个名为“thisPreview”的变量,然后是一个数字,这将是匹配的 div 的 id,或变量“theSuffix”(变量也需要是全局的)。

我怎样才能做到这一点?

4

1 回答 1

2

不要使变量末尾有共同的前缀和数字。只需使用一个对象:

var thisPreview = {};

...

thisPreview[theSuffix] = $fi.prev(".image-preview");
于 2013-02-19T20:55:37.090 回答