我想动态设置变量名称,我一直在尝试:
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”(变量也需要是全局的)。
我怎样才能做到这一点?