IE11 下发帖页编辑器的工具栏木有了。。。情况就是这样的:
我知道你们都需要看重点的,开搞:
文件: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 浏览的时候会出错