我注意到当你有一个相当大的表(几千行)时,当你使用 doctype 并将 X-UA-Compatible 设置为 IE=8 时,IE8 搜索功能(Ctrl+F)变得非常慢:
<!doctype html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=8">
...
目前我们没有办法减小表格的大小。此外,删除或更改 doctype 或 X-UA-Compatible 会打乱页面的布局,因此这也不是快速的解决方案。
有没有其他想法如何使 IE8 搜索功能更快?
为了显示差异,我创建了两个可以尝试的测试文件(在 IE8 中):
- http://playground.steven.comprise.com/ie8/fast.php
- http://playground.steven.comprise.com/ie8/slow.php
fast.php 是没有 doctype 或 X-UA-Compatible 的。在这个文件中搜索速度很快!slow.php 同时使用 doctype 和 X-UA-Compatible,因此我们希望在此文件中的搜索变得与在 fast.php 中一样快
想法?