gpt4 book ai didi

internet-explorer - FCK 编辑器不工作

转载 作者:行者123 更新时间:2023-12-04 14:01:17 26 4
gpt4 key购买 nike

未为 IE11 加载 FCK 编辑器。这是由于 IE11 的新用户代理。

类似的问题出现在 IE10 上,它有以下修复——

var sBrowserVersion = navigator.appVersion.match(/MSIE ([\d.]+)/)[1] ; (引用- FCKEditor doesn't work in IE10 )

IE11 是否也有类似的修复?

请帮忙。

最佳答案

为了解决这个问题(FCKEditor 与 IE11 的兼容性),您必须在生成编辑器实例的相应文件中将 IE 11 检查添加到 FCKEditor。在我们的例子中,这是 fckeditor_php5.php:

else if ( strpos($sAgent, 'Gecko') !== false )
{
// Internet Explorer 11
$iVersion = (int)substr($sAgent, strpos($sAgent, 'rv:') + 3, 2) ;
return ($iVersion >= 11) ;
}

注意:以上已添加到函数 FCKeditor_IsCompatibleBrowser() 中。

然后您必须将 IE 9 或 IE 8 的仿真添加到页面(IE 10 对我们不起作用):
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9" />

注意:以上必须添加在head标签中

关于internet-explorer - FCK 编辑器不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20321803/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com