用Javascript区别浏览器

时间:2022-10-21 15:28:38

<html>
    <head>

        <title>TAG index Web</title>

    </head>
    <body>
    <script type="text/javascript">
    <!--
        document.write('<p>浏览器判別:<br>');

        // 包含「Opera」文字列
        if(navigator.userAgent.indexOf("Opera") != -1) {
            document.write('您的浏览器时Opera吧?');
        }
        // 包含「MSIE」文字列
        else if(navigator.userAgent.indexOf("MSIE") != -1) {
            document.write('您的浏览器时Internet Explorer吧?');
        }
        // 包含「Firefox」文字列
        else if(navigator.userAgent.indexOf("Firefox") != -1) {

            document.write('您的浏览器时Firefox吧?');
        }
        // 包含「Netscape」文字列

        else if(navigator.userAgent.indexOf("Netscape") != -1) {
            document.write('您的浏览器时Netscape吧?');

        }
        // 包含「Safari」文字列
        else if(navigator.userAgent.indexOf("Safari") != -1) {
            document.write('您的浏览器时Safari 吧?');
        }
        else{
            document.write('无法识别的浏览器。');
        }
        document.write('</p>');
        // -->
    </script>
    </body>
</html>