zoukankan      html  css  js  c++  java
  • Unable to modify the parent container element before the child element is closed

    用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>
  • 相关阅读:
    定位 -CLGeocoder
    定位
    定位
    定位- 汽车导航
    定位
    SVN
    githubRepository -- 使用
    git 常用指令
    ipad ------ 与iPhone的差别
    总结
  • 原文地址:https://www.cnblogs.com/dudu/p/1610408.html
Copyright © 2011-2022 走看看