var txt = "Browser CodeName: " + navigator.appCodeName + "";
txt+= "Browser Name: " + navigator.appName + "";
txt+= "Browser Version: " + navigator.appVersion + "";
txt+= "Cookies Enabl...
分类:
Web程序 时间:
2014-06-05 10:09:31
阅读次数:
270
有三种方法能够确定浏览器窗口的尺寸(浏览器的视口,不包括工具栏和滚动条
)。
对于Internet Explorer、Chrome、Firefox、Opera 以及 Safari:
window.innerHeight - 浏览器窗口的内部高度
window.innerWidth - 浏览器窗口的内部宽度
对于 Internet Explorer 8、7、...
分类:
Web程序 时间:
2014-06-05 09:55:20
阅读次数:
255
screen.availWidth 属性返回访问者屏幕的宽度,以像素计,减去界面特性,比如窗口任务栏。
screen.availHeight 属性返回访问者屏幕的高度,以像素计,减去界面特性,比如窗口任务栏。
-------------------------------------------完整的例子-------------------------------------------
...
分类:
Web程序 时间:
2014-06-05 07:47:36
阅读次数:
364
document.referrer可以得到上一个点击超连接进来的页面URL注意:只能访问服务器上页面使用,打开本地文件无效(为空字符串)
分类:
Web程序 时间:
2014-05-31 04:26:41
阅读次数:
241
//js获取项目根路径,如:
http://localhost:8083/uimcardprjfunction getRootPath(){ //获取当前网址,如:
http://localhost:8083/uimcardprj/share/meun.jsp var curWwwPat...
分类:
编程语言 时间:
2014-05-29 12:25:06
阅读次数:
211
function getStyle(ojb,attr){ if(obj.currentStyle){
return obj.currentStyle[attr]; } else{ return getComputedSt...
分类:
Web程序 时间:
2014-05-28 17:03:10
阅读次数:
269
function getStyle(ojb,attr){ if(obj.currentStyle){
return obj.currentStyle[attr]; } else{ return getComputedSt...
分类:
Web程序 时间:
2014-05-28 16:19:05
阅读次数:
238
分享下JS获取IE浏览器信息包括类型、版本、语言等的实例。代码:
JS完整获取IE浏览器信息--www.jbxue.com 浏览器类型 浏览器版本 浏览器语言 www.jbxue.com CPU类型 操作系统 系统语言
用户语言; ...
分类:
Web程序 时间:
2014-05-26 16:05:47
阅读次数:
292
Js获取当前日期时间及其它操作
var myDate = new Date();
myDate.getYear(); //获取当前年份(2位)
myDate.getFullYear(); //获取完整的年份(4位,1970-????)
myDate.getMonth(); //获取当前月份(0-11,0代表1月)
myDate.getDate(); ...
分类:
Web程序 时间:
2014-05-22 18:47:26
阅读次数:
336