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

时间:2023-12-12 08:42:14

IE8报错误:

用户代理: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET4.0C; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0E)
时间戳: Mon, 13 Oct 2014 00:54:55 UTC

消息: HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917)
行: 0
字符: 0
代码: 0
URI: xxxx

网络上解释是dom未加载完成,则开始使用dom的错误。
此错误的解决方法:
1.将所有的js放到html代码后面,这是一个比较好的编码习惯。
2.移动注册事件的js代码:$(function (){
//将注册事件的js代码放到此处
})
经过上面两个步骤基本能解决问题。