.net火狐瀏覽器 ie瀏覽器 判斷

費勁_奮進發表於2014-05-05
<script language="javascript">
        function page() {
            if (window.navigator.userAgent.indexOf("MSIE") >= 1) {
                alert("IE瀏覽器");
            }
            if (window.navigator.userAgent.indexOf("Firefox") >= 1) {
                alert("火狐瀏覽器");
            }
        }
    </script>

</head>
<body>
    <input type="button" onclick="page()" />
</body>
</html>

相關文章