<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>
本文提供了一个简单的JavaScript代码片段,用于判断用户正在使用的IE浏览器是32位还是64位。
5416

被折叠的 条评论
为什么被折叠?



