码迷,mamicode.com
首页 > Web开发 > 详细

JS - IE or not:判断是否为IE浏览器方法

时间:2015-08-13 17:13:04      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

问题:使用JS判断是否为IE浏览器

方法:

1.IE=‘\v‘==‘v‘

if(‘\v‘==‘v‘) // true only in IE

 

2.IE=(!+"\v1")

if(!+"\v1") // true only in IE

3.IE=top.execScript?1:0

if(top.execScript?true:false) // true only in IE

 

JS - IE or not:判断是否为IE浏览器方法

标签:

原文地址:http://www.cnblogs.com/tx8899/p/4727487.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!