IE下 iframe的纠结

今天遇到了一个 在IE下iframe标签显示的问题、

  我使用jquery.html("<iframe src='index.html'></iframe>") 这个index.html的作用是播放视频、

  可是总是显示不了。 在jquery.html("<iframe src='index.html'></iframe>") ;后面加上alert("");便可以。

      觉的很奇怪。 

  解决方案:

        当对这个iframe输出之后 再重新刷新这个iframe 解决!

      js:    

      function reflashPage(videourl) {
        document.win.location.href = videourl;
        }

          

    

原文地址:https://www.cnblogs.com/gaochun413/p/2624845.html