変数名を動的に設定したいのですが、これまでに試してきました。
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」(変数もグローバルである必要があります)が必要です。
どうすればこれを達成できますか?