爱者家园主页制作 → 网页特效代码:显示客户端IE浏览器信息
查看完整版本:网页特效代码:显示客户端IE浏览器信息
2007/8/7 20:48:35

将下面的代码放到<body></body>之间合适的位置

<script language="javascript">
document.write("<br>");
document.write('<font color="#FF00FF">');
document.write("浏览器类型:"+navigator.appName);
document.write("<br>");
document.write("浏览器版本:"+navigator.appVersion);
document.write("<br>");
document.write("操作系统:"+navigator.platform);
document.write("<br>");
document.write("屏幕分辨率:"+window.screen.width+"x"+window.screen.height);
document.write("</font>");
</script>

Powered by BBSXP 2008 SP2 ACCESS © 1998-2024
Processed in 0.03 second(s)