代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
JS
】
浏览器信息获取
作者:
吴天
/ 发布于
2012/7/16
/
626
浏览器信息获取
<div>/* * Namespace : com.uk.silence.window * Class: Geometry * Version : 1.0 */ var namespace = Module.createNamespace("com.uk.silence.window", 1.0); namespace.Geometry = (function() { //浏览器窗口大小及坐上角位置 var Browser = function() { /* * 获取浏览器所在位置: * screenX和screenY需先判断,再判断screenLeft和screenTop * 原因:在IE9中同时提供screenX,screenY,screenLeft,screenTop.screenX和screenY表示浏览器左上角相对屏幕坐标,screenLeft和screenTop表示浏览器视图区左上角相对屏幕坐标 * IE6,7,8只提供screenLeft和screenTop * Firefox只提供screenX和screenY * 在chrome中同时提供screenX,screenY,screenLeft,都表示浏览器左上角相对屏幕坐标 * * 获取浏览器大小 * IE9,firefox,chrome中提供outerWidth和outerHeight * */ var width = 0, height = 0, left =0, top = 0; if(window.outerWidth) { width = window.outerWidth; height = window.outerHeight; } if(window.screenX) { left = window.screenX; top = window.screenY; } else if(window.screenLeft) { left = window.screenLeft; top = window.screenTop; } return { "width" : width, "height" : height, "position" : { "left" : left, "top" : left } }; }; //浏览器可视区大小 var Viewport = function(){ var width = 0, height = 0, horizontalScroll = 0, verticalScroll = 0; if(window.innerWidth) { width = window.innerWidth; height = window.innerHeight; horizontalScroll = window.pageXOffset; verticalScroll = window.pageYOffset; } else if(document.documentElement && document.documentElement.clientWidth) { width = document.documentElement.clientWidth; height = document.documentElement.clientHeight; horizontalScroll = document.documentElement.scrollLeft; verticalScroll = document.documentElement.scrollTop; } else if(document.body && document.body.clientWidth) { width = document.body.clientWidth; height = document.body.clientHeight; horizontalScroll = document.body.scrollLeft; verticalScroll = document.body.scrollTop; } return { "width" : width, "height" : height, "horizontalScroll" : horizontalScroll, "verticalScroll" : verticalScroll }; }; //获取文档大小 var Document = function() { var width = 0, height = 0; if(document.documentElement && document.documentElement.scrollWidth) { width = document.documentElement.scrollWidth; height = document.documentElement.scrollHeight; } else if(document.body && document.body.scrollWidth) { width = document.body.scrollWidth; height = document.body.scrollHeight; } return { "width" : width, "height" : height }; }; //获取滚动条宽度 var Scroll = function() { var outer = document.createElement("div"), inner = document.createElement("div"), barSize = 0; outer.style.position = "absolute"; outer.style.top = "-1000px"; outer.style.left = "-1000px"; outer.style.width = "100px"; outer.style.height = "100px"; outer.style.margin = "0px"; outer.style.padding = "0px"; outer.style.overflow = "scroll"; document.documentElement.appendChild(outer); inner.style.position = "relation"; inner.style.border = "0px"; inner.style.height = "200px"; inner.style.margin = "0px"; inner.style.padding = "0px"; outer.appendChild(inner); barSize = 100 - inner.offsetWidth; document.documentElement.removeChild(outer); return { "barSize" : barSize }; }; return { "Browser" : Browser, "Viewport" : Viewport, "Document" : Document, "Scroll" : Scroll }; })();</div>
试试其它关键字
浏览器信息
同语言下
.
Jquery搜索框获取回车事件
.
H5页面添加倒计时,然后自动跳转
.
通过user-agent判断h5页面是在哪个手机App(QQ、微信
.
nginx 禁止未绑定的域名访问
.
JavaScript 获取按键,并屏蔽系统 Window 事件
.
H5之只允许微信浏览器打开,禁止从外部浏览器访问
.
微信打开网址添加在浏览器中打开提示的办法
.
实现JS复制、粘贴,Chrome/Firefox下可用
.
video视频播放,play()、pause()、duration时长、onen
.
HTML5实现MP3上传前的预览和播放时长的获取
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
吴天
贡献的其它代码
(
4
)
.
任意正整数转化i使用基数b进行表达
.
插入排序
.
浏览器信息获取
.
类型判断
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3