我试图在我的页面上搜索一个没有将“当前”属性设置为“当前”的 iframe。
(当前属性在使用 iframe 时设置,并在加载后重置)。
我正在尝试编写代码,以便如果有 1 个或多个 iframe 未设置为当前,则使用其中一个,否则,创建一个新的 iframe,做一些其他的事情并使用新的 iframe,
但是这段代码不太好用,我从不触发“警报”,所以即使我知道我没有未设置“当前”属性的 iframe,我也永远不会进入 ELSE 部分:
var $fi = $visible.find(".file-info");
thisPreview = {};
var iframes = $('iframe').filter(function (index) {
return index == 0 || $('iframe').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();
thisPreview[theSuffix] = $fi.prev(".image-preview");
$(this).closest(".file-upload-form").children(".variable-hidden").attr('value',theSuffix);
iframes.attr('current','current');
$(this).closest('.file-upload-form').attr('target','upload_target_'+theSuffix);
}
else{//else, create a new iframe, quick!
var count = $('[id^="upload_target_"]').length();
alert(count);
var countPlus1 = count+1;
iframe = $('<frame>').attr({'id':'upload_target_'+countPlus1,'name':'upload_target_'+countPlus1,'current':'current'}).addClass('upload-target');
iframe.appendTo($('#container'));
thisPreview[countPlus1] = $fi.prev(".image-preview");
$(this).closest(".file-upload-form").children(".variable-hidden").attr('value',countPlus1);
$(this).closest('.file-upload-form').attr('target','upload_target_'+countPlus1);
}