3

TinyMCE 有这个易于使用的代码,但我在 IE9 中看不到工具栏图标(似乎没有加载 imgs)。

<html>
      <head><!-- CDN hosted by Cachefly -->
         <script src="//tinymce.cachefly.net/4.0/tinymce.min.js"></script>
         <script>        tinymce.init({selector:'textarea'});</script>
      </head>
      <body>
            <textarea>Your content here.</textarea>
      </body>
</html>

我看过这个类似的帖子(internet explorer 中的 tinymce 图标),但这个建议对我没有任何影响。

我尝试将浏览器置于不同的模式,但没有任何效果。我唯一一次看到它在 IE 中工作是在 EditPlus 嵌入式浏览器中,但我不知道它到底是什么。

在 Chrome 中运行良好。

EDIT- 直接加载文件时在 IE 中工作,例如。C:\inetpub\wwwroot\tiny.html

谢谢。

4

3 回答 3

2

用 IE 检查的一件事是字体下载安全设置。如果设置设置为“禁用”,则不会显示 Web 字体图标,因为无法下载字体。可以通过单击 Internet 选项对话框的安全选项卡上的自定义级别...按钮来找到该设置,该对话框可以在工具 > Internet 选项下访问。

于 2014-04-03T06:22:35.737 回答
2

TinyMCE 4 使用包含所有图标的网络字体。确保它们被加载,并且在加载带有标题的字体时允许跨域Access-Control-Allow-Origin: *

于 2013-10-03T20:10:37.243 回答
0

当我检查工具栏图标时:我发现它们是网络字体

<i class="mce-ico mce-i-bold"></i>

像这样代表粗体。这意味着正确地说 TINYMCE 正在为工具栏使用网络字体,但没有显示出来。

在 IE 9 和以前版本的 chrome 上,有一些问题可以回答相同的问题。这是链接

Fontawesome 图标在 IE9 和 Chrome 上不起作用

其中说:

对于下面给出的示例,假设文档位于http://example.com/page.html并且所有 URL 链接到用户代理支持的有效字体资源。将加载使用以下“src”描述符值定义的字体:

/* same origin (i.e. domain, scheme, port match document) */
src: url(fonts/simple.woff);

/* data url's with no redirects are treated as same origin */
src: url("data:application/font-woff;base64,...");

/* cross origin, different domain */
/* Access-Control-Allow-Origin response header set to '*' */
src: url(http://another.example.com/fonts/simple.woff);

使用以下“src”描述符值定义的字体将无法加载:

 /* cross origin, different scheme */
 /* no Access-Control-xxx headers in response */
 src: url(https://example.com/fonts/simple.woff);

/* cross origin, different domain */
/* no Access-Control-xxx headers in response */
src: url(http://another.example.com/fonts/simple.woff);

正如在 github https://github.com/tinymce/tinymce/tree/master/js/tinymce/skins/lightgray/fonts上看到的,他们使用的是 icomoon 字体。因此,下载这些并在您自己的服务器上使用。希望它能解决目的。

于 2013-10-07T17:07:42.250 回答