Created
April 1, 2016 08:51
-
-
Save zyjibmcn/ac83435311c7e36ee03319377c28db5c to your computer and use it in GitHub Desktop.
web 前端问题解决
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. 布局显示 | |
我们的web项目,是基于angularjs + bootstrap的实现,在大部分用户的机器上页面显示正常,但在极少的用户机显示布局不整齐。 | |
有时候同一个浏览器同一个版本,大部分用户OK,少数不OK,问题不好重现。 | |
这个问题用户是在Firefox上发现的,但是我未能在本地Firefox重现,但在本地IE 10重现。 | |
解决:通过Inspect Element, 手动动态enable/disable CSS选项,找出问题CSS设置,有可能是CSS设置冲突。从找到解决办法到解决问题 | |
只花了不到十分钟。 | |
2. 页面加载 | |
CKEditor autosave插件在大部分用户那都能正常加载,少量用户那不能加载,显示TypeError: event.editor.lang.autosave is undefined plugin.js:60:0 | |
后来偶然间发现和Firefox Locale的设置有关。 | |
解决:Tools -> Quick Locale Swither -> en-US English, 重启浏览器,页面正常加载。 | |
思路正确问题迎刃而解,但大部分时间花在找到解决问题的思路上,真正解决的时间占比很小。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment