document.write无法在ie中工作,但可以在chrome中工作

时间:2018-06-19 19:43:54

标签: javascript html reactjs internet-explorer google-chrome-extension

我正在尝试从响应中获取html标记,并尝试覆盖当前页面以提交一些表单。

当我在chrome中使用document.write时。其获取和覆盖当前的html标记。 但是IE显示空白屏幕,看起来IE不支持document.write。

 fetch('http://www.mocky.io/v2/5b2948502f00005b00f56127')
    .then(function(response) {
      return response.text();
    })
    .then(function(myJson) {
  document.write(myJson)
   })

能否请您提供给我一个修复程序或polyfill,以将其安装在我们的React应用程序中

0 个答案:

没有答案