1. 程式人生 > >使用js如何判斷IE瀏覽器的位數

使用js如何判斷IE瀏覽器的位數

 <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>判斷IE</title>
<script type="text/javascript">
function Init()
{
 if(window.navigator.platform == "Win32")
  alert("IE是32位的!");
 else
  alert("IE是64位的!");
}
</script>
</head>
<body onload="Init()">
</body>
</html>