Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/cmake/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Safari版本14.1.1不在IFRAME中加载字体_Iframe_Fonts_Safari - Fatal编程技术网

Safari版本14.1.1不在IFRAME中加载字体

Safari版本14.1.1不在IFRAME中加载字体,iframe,fonts,safari,Iframe,Fonts,Safari,有人知道最新的Safari版本14.1.1(16611.2.3)发生了什么,为什么它停止在IFRAME中加载字体: <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title></title> <script type="t

有人知道最新的Safari版本14.1.1(16611.2.3)发生了什么,为什么它停止在IFRAME中加载字体:

<!DOCTYPE html>
<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title></title>
    <script type="text/javascript" src="https://3dflipbook.net/js/jquery.min.js"></script>
  </head>
  <body>
    <iframe  width="600" height="300" src=""></iframe>
    <script type="text/javascript">
      $(function() {
        var f = $('iframe')[0];
          wnd = f.contentWindow,
          doc = f.contentDocument;
        if(wnd.stop) {
          wnd.stop();
        }
        $(doc.head).append('<link rel="stylesheet" href="https://3dflipbook.net/css/font-awesome.min.css">');
        $(doc.body).html('{<i class="fa fa-angle-left"></i><i class="fa fa-angle-right"></i>}');
      });
    </script>
  </body>
</html>

$(函数(){
var f=$('iframe')[0];
wnd=f.contentWindow,
doc=f.contentDocument;
如果(wnd.stop){
wnd.stop();
}
$(文件头)。附加(“”);
$(doc.body.html('{}');
});
它显示正方形而不是符号:

这在以前的版本中运行良好