将动态内容设置为iframe

时间:2016-09-05 18:45:13

标签: javascript jquery html 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,但是其中任何页面都不能访问所有网页。 请帮忙

1 个答案:

答案 0 :(得分:0)

  

尝试修改第三种方法:

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();