用IE 8打开页面时,有时会出现这样的提示:

Message: HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917)

引起该问题的代码:

        <ul id="header_userinfo">
        
<li><script type="text/javascript">GetLoginInfo(location.href)</script></li>  
        </ul>

解决方法:

        <ul id="header_userinfo">
        
<li><script type="text/javascript">$(document).ready(function() { GetLoginInfo(location.href); });</script></li>
        </ul>

相关文章:

  • 2022-02-25
  • 2022-02-24
  • 2022-12-23
  • 2022-12-23
  • 2021-11-23
  • 2021-11-19
  • 2022-12-23
猜你喜欢
  • 2021-10-31
  • 2022-12-23
  • 2022-02-28
  • 2022-12-23
  • 2022-12-23
  • 2021-06-24
  • 2022-12-23
相关资源
相似解决方案