判断ie浏览器

来源:互联网 发布:影响算法设计的因素 编辑:程序博客网 时间:2024/06/06 05:15
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script type="text/javascript">
        if ("\v" == "v") { // IE浏览器
            alert("我是ie");
        }
        else { // 非IE浏览器
            alert("我是其他浏览器");
        };
       
    </script>
</head>
<body>
 
</body>
</html>
原创粉丝点击