JavaScript对象、属性、事件手册集合方便查询

2019-06-05 23:20:13于丽

Math.floor(number) 将对象number转为整数,舍取所有小数
Math.min(1,2)   返回1,2哪个小
Math.max(1,2)   返回1,2哪个大

navigator.appName 返回当前浏览器名称
navigator.appVersion 返回当前浏览器版本号
navigator.appCodeName 返回当前浏览器代码名字
navigator.userAgent 返回当前浏览器用户代标志

onsubmit   onsubmit="return(xx())"   使用函数返回值
opener    opener.document.对象   控制原打开窗体对象

prompt    xx=window.prompt("提示信息","预定值"); 输入语句
parent    parent.框架名.对象 控制框架页面

return   return false    返回值
random    随机参数(0至1之间)
reset()    form.reset();    使form表单内的数据重置

split("")   string.split("")   将string对象字符以逗号隔开
submit()   form对象.submit()   使form对象提交数据

String对象的   charAt(x)对象 反回指定对象的第多少位的字母
        lastIndexOf("string") 从右到左询找指定字符,没有返回-1
        indexOf("string") 从左到右询找指定字符,没有返回-1
        LowerCase()   将对象全部转为小写
        UpperCase()   将对象全部转为大写
substring(0,5)   string.substring(x,x)   返回对象中从0到5的字符
setTimeout("function",time) 设置一个超时对象
setInterval("function",time) 设置一个超时对象

toLocaleString() x.toLocaleString()   从x时间对象中获取时间,以字符串型式存在
typeof(变量名)    检查变量的类型,值有:String,Boolean,Object,Function,Underfined

window.event.button==1/2/3 鼠标键左键等于1右键等于2两个键一起按为3
window.screen.availWidth 返回当前屏幕宽度(空白空间)
window.screen.availHeight 返回当前屏幕高度(空白空间)
window.screen.width   返回当前屏幕宽度(分辨率值)
window.screen.height   返回当前屏幕高度(分辨率值)
window.document.body.offsetHeight; 返回当前网页高度
window.document.body.offsetWidth; 返回当前网页宽度
window.resizeTo(0,0)   将窗口设置宽高
window.moveTo(0,0)   将窗口移到某位置
window.focus()   使当前窗口获得焦点
window.scroll(x,y) 窗口滚动条坐标,y控制上下移动,须与函数配合
window.open()   window.open("地址","名称","属性")
属性:toolbar(工具栏),location(地址栏),directions,status(状态栏),menubar(菜单栏),scrollbar(滚动条),resizable(改变大小),   width(宽),height),fullscreen(全屏),scrollbars(全屏时无滚动条无参 数,channelmode(宽屏),left(打开窗口x坐标),top(打开窗口y坐标)