document.all

document.all是IE浏览器的特有JS属性。

因此,当需要判断客户端使用是否IE浏览器时

if ( document.all ) {
	// is IE browser
} else {
	// is not IE browser
}

posted @ 2010-12-29 10:28  michael_lee  阅读(154)  评论(0编辑  收藏  举报