本文介绍了IE8中的createElement错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在IE8中的以下行收到跟随错误(不是在IE9或chrome或firefox中)
I am getting the follow error on the following line in IE8 ( not in IE9 or chrome or firefox )
popup = document.createElement('div');
错误:
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)
Timestamp: Fri, 5 Aug 2011 13:39:41 UTC
Message: Object doesn't support this property or method
Line: 72
Char: 5
Code: 0
URI: http://192.168.7.1/fquick/script.js
如何解决这个问题?
推荐答案
将行更改为
var popup = document.createElement('div');
并且有效。好笑。
这篇关于IE8中的createElement错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!