将动态内容设置为iframe

将动态内容设置为iframe

我从服务器收到不同页面的完整HTML代码作为字符串:

 $.post($form.attr("action"), $form.serialize(), function(responseText) {
      console.log("text received");

      //Setting dynamic content to iframe method *

    }).error(function(p1, p2, p3){
      alert("error!");
      console.log(p1 + p2 + p3);
    })


;

将动态内容设置为iframe方法1:

var s = $(responseText);
$('#FileFrame').contents().find('html').html(s);


将动态内容设置为iframe方法2:

var $frame = $('#FileFrame');
  var doc = $frame[0].contentWindow.document;
  var $body = $('body',doc);
  $body.html(responseText);


将动态内容设置为iframe方法3:

var iframe = document.getElementById('FileFrame');
   var iframedoc = iframe.document;
   if (iframe.contentDocument)
   {        iframedoc = iframe.contentDocument;
   console.log("iframe has contentDocument");
   }
   else if (iframe.contentWindow)
   {
   iframedoc = iframe.contentWindow.document;
   console.log("iframe has contentWindow.document");
   }
   if (iframedoc) {
   //iframedoc.open();
   iframedoc.write(responseText);
   iframedoc.close();
   console.log("iframedoc is not NULL");
   } else {
   alert('Cannot inject dynamic contents into iframe.');
   }


问题在于,某些页面在方法1下显示良好,有些在方法2下显示,而有些在方法3下显示,但是其中任何一个都无法访问所有网页。
请帮忙

最佳答案

尝试像这样修改您的第三个方法:


var iframe = document.getElementById('FileFrame');
var iframeDoc;
if(iframe.contentWindow){
   iframeDoc = iframe.contentWindow;
}
else if(iframe.contentDocument.document){
   iframeDoc = iframe.contentDocument.document;
}
else if (iframe.contentDocument) {
   iframeDoc = iframe.contentDocument;
}
else{
   alert('Cannot inject dynamic contents into iframe.');
   return;
}
iframeDoc.document.open();
iframeDoc.document.write(responseText);
iframeDoc.document.close();

07-27 21:10