My IE is IE 6. It's pretty old, but I have to use it.
I just found a strange problem, it doesn't support "document.getElementById()"!
See my test file: test.html
<a id="aaa">xxx</a>
<script>
aaa = document.getElementById("aaa");
alert(aaa);
</script>
When I open this file by IE, there shows an ERROR dialog:
line: 3
char: 1
error: object doesn't support the attribute or method
code: 0
URL: file://D:/test.html
Do I made some mistakes? It's so strange ~