Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
In order to fix an IE9 bug I had to put the 'DOCTYPE' declaration at the top of the page:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&
问问题
问问题 2012-04-12T03:31:53.797 2389 次 This question shows research effort; it is useful and clear 0 This question does not show any research effort; it is unclear or not useful Bookmark this question. Show activity on this post. sessiondoctype 4 1 回答 1 This answer is useful 0 解决方案是从 require_once 'somefile.php' 切换; 至 require_once('somefile.php'); 虽然 Firefox 和 Android 浏览器对第一种样式很好,但 IE9 有一个怪癖:它会忽略 div 的 inline-block 样式。 于 2012-04-12T05:01:05.423 回答 Related 2 c# - MVC重定向到另一个控制器在不同的命名空间,但同一个项目 1 r - 是否有更快的方法将逻辑操作应用于 R 中的大型数据集的子集? 2 knockout.js - 淘汰赛初始绑定 2 ios - UILabel with Rich Text HTML capability and Auto Layout support 3 windows-phone-7 - 两种方式绑定不起作用 1 ruby - 在代码块参数中公开键/值对 1 perl - Sed replace multiple Patterns in csv files 1 php - 带有 html 内容的电子邮件功能 3 r - 在 R 中将指数值导入为数字 4 c - 这个程序什么时候返回 0 Reference php × 1429865 c/c++ × 756500 nginx × 49975 mongodb × 159057 mybatis × 3233 anaconda × 13410 pycharm × 14671 python × 1902243 vscode × 56040 docker × 110988 github × 49000 flask × 49129 ffmpeg × 24037 jmeter × 16910 matplotlib × 63493 bootstrap × 54641
解决方案是从 require_once 'somefile.php' 切换;
至
require_once('somefile.php');
虽然 Firefox 和 Android 浏览器对第一种样式很好,但 IE9 有一个怪癖:它会忽略 div 的 inline-block 样式。