文件:statis/js/editor.js
查找:
if(BROWSER.other) {
$(editorid + '_controls').style.display = 'none';
return;
}
替换为:
/*
if(BROWSER.other) {
$(editorid + '_controls').style.display = 'none';
return;
}
*/
主要的原因是什么呢?
坑爹的微软把IE11的USERAGENT标识改成了:
mozilla/5.0 (windows nt 6.1; wow64; trident/7.0; slcc2; .net clr 2.0.50727; .net clr 3.5.30729; .net clr 3.0.30729; media center pc 6.0; rv:11.0) like gecko
以前在USERAGENT里面都会带上MSIE与版本号,这次作死的微软把这玩意儿改了,用like gecko作为IE标识,用rv作为版本号,而discuz在common.js判断浏览器的时候没有把IE11加入进来,所以当用IE11浏览的时候会出错
以上内容为Discuz!官网上大神CR180 提供的方案,我只是转载,在此感谢作者。