How to create a new HTMLDocument in IE?

2019-07-03 12:49发布

dcoument.implementation.createHTMLDocument [2] is one of the lesser-known DOM methods that (surprise!) creates a brand new HTML document.

Unsurprisingly, browser support is rather poor, but I found some workarounds:

  • Use an XLSTProcessor (crazy stuff!) in Firefox < 4
  • Create an empty iFrame:

    var iframe = document.createElement('iframe');
    iframe.style = 'display: none';
    iframe.src = 'data:text/html,<!DOCTYPE html><title></title><body>';
    document.body.appendChild(iframe);
    newHTMLDocument = iframe.contentDocument; // <- we need this.
    document.body.removeChild(iframe);
    

Still, since IE does not support the data scheme on iframes, there is no way to do it in IE. Or is there?

1条回答
混吃等死
2楼-- · 2019-07-03 13:34

How about setting src to about:blank?
(And perhaps document.writeing an empty HTML document)

查看更多
登录 后发表回答