当我单击以下 html 示例中的超链接“关闭”然后“打开”时,(非常精简的代码),ie9 崩溃
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<HTML>
<HEAD>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<title>title</title>
</HEAD>
<BODY>
<DIV style="display: inline;">
<A style="float: left;">always </A>
</DIV>
<DIV style="display: inline;" id="hideMe">
<A style="float: left;">some</A>
<A style="float: left;">times </A>
</DIV>
<DIV style="display: inline;">
<A style="float: left;">always </A>
</DIV>
<DIV>
<A onclick="{document.getElementById('hideMe').style.display = 'inline';}" href="#">on</A>
<A onclick="{document.getElementById('hideMe').style.display = 'none';}" href="#">off</A>
</DIV>
</BODY>
</HTML>
我不确定下一步该做什么,我看不到代码的根本问题,它甚至通过了 HTML 4.01 Strict!验证。
任何帮助,将不胜感激