原来是IE会把页面中的元素id可以直接当变量名一样使用,但是这个id变量不能被赋值.
<body id='body'> <script type="text/javascript"> body=1; </script> </body>