在 IE(6 或 7)中将以下 HTML 片段作为 HTML 文档打开。Ctrl+F 并寻找“测试”。IE 永远不会找到恰好位于隐藏文本区域中的搜索词“test”。
<html>
<body>
<table>
<tr>
<td style="display:none;">
<textarea >test</textarea> -- first hidden 'test' is here
</td>
</tr>
</table>
test -- Second 'test' is here
</body>
</html>
我在这里错过了一些微不足道的事情吗?