找到相关内容 1
各浏览器对typeof运算符的实现差异
1,IE6/7/8中typeof运算符对BOM对象如window,document,location,history等对象的方法错误的返回“object”,标准浏览器都返回“function”。 alert(typeof window.alert); // object alert(typeof document.write); // object
http://cyqdata.cn/cnblogs/article-detail-35146