JS 常见事件
1.onblur:(使用在表单元素中,当元素失去焦点的时候执行)
2.onchange:(使用在表单元素中,当某些东西改变是执行)
3.onclick:(鼠标点击一个元素时执行)
4.ondblclick:(鼠标双击一个元素时执行)
5.onfocus:(使用在表单元素中,当元素获得焦点时执行)
6.onkeydown: (按下某个按键时执行)
7.onkeypress:(按下和释放某个按键时执行)
8.onkeyup:(释放某个按键时执行)
9.onload:(在body标签中使用,载入页面的时候执行)
10.onmousedown:(按下鼠标按键时执行)
11.onmousemove:(鼠标光标在元素上移动时执行)
12.onmouseout:(鼠标光标移开元素时执行)
13.onmouseover:(鼠标光标移到元素上时执行)
14.onmouseup:(当释放鼠标按键时执行)
15.onreset:(用在表单元素中,当表单重置时执行)
16.onselect:(用在表单元素中,当元素被选择时执行)
17.onsubmit:(用在表单元素中,当表单提交时执行)
18.onunload:(用在body标签中,当关闭页面时执行)
常用的小知识点:
22.click() 对象.click() 使对象被点击。
23.closed 对象.closed 对象窗口是否已关闭true/false
24.clearTimeout(对象) 清除已设置的setTimeout对象
25.clearInterval(对象) 清除已设置的setInterval对象
26.confirm("提示信息") 弹出确认框,确定返回true取消返回false
27.cursor:样式 更改鼠标样式 hand crosshair text wait help default auto e/s/w/n-resize
28.
29.event.clientX 返回最后一次点击鼠标X坐标值;
30.event.clientY 返回最后一次点击鼠标Y坐标值;
31.event.offsetX 返回当前鼠标悬停X坐标值
32.event.offsetY 返回当前鼠标悬停Y坐标值
33.
34.document.write(document.lastModified) 网页最后一次更新时间
35.document.ondblclick=x 当双击鼠标产生事件
36.document.onmousedown=x 单击鼠标键产生事件
37.
38.document.body.scrollTop; 返回和设置当前竖向滚动条的坐标值,须与函数配合,
39.document.body.scrollLeft; 返回和设置当前横向滚动务的坐标值,须与函数配合,
40.document.title document.title="message"; 当前窗口的标题栏文字
41.document.bgcolor document.bgcolor="颜色值"; 改变窗口背景颜色
42.document.Fgcolor document.Fgcolor="颜色值"; 改变正文颜色
43.document.linkcolor document.linkcolor="颜色值"; 改变超联接颜色
44.document.alinkcolor document.alinkcolor="颜色值"; 改变正点击联接的颜色
45.document.VlinkColor document.VlinkColor="颜色值"; 改变已访问联接的颜色
46.document.forms.length 返回当前页form表单数
47.document.anchors.length 返回当前页锚的数量
48.document.links.length 返回当前页联接的数量
49.document.onmousedown=x 单击鼠标触发事件
50.document.ondblclick=x 双击鼠标触发事件
51.defaultStatus window.status=defaultStatus; 将状态栏设置默认显示
52.
53.function function xx(){...} 定义函数
54.isNumeric 判断是否是数字
55.innerHTML xx=对象.innerHTML 输入某对象标签中的html源代码
56.innerText divid.innerText=xx 将以div定位以id命名的对象值设为XX
57.
58.location.reload(); 使本页刷新,target可等于一个刷新的网页
59.
60.Math.random() 随机涵数,只能是0到1之间的数,如果要得到其它数,可以为*10,再取整
61.Math.floor(number) 将对象number转为整数,舍取所有小数
62.Math.min(1,2) 返回1,2哪个小
63.Math.max(1,2) 返回1,2哪个大
64.
65.navigator.appName 返回当前浏览器名称
66.navigator.appVersion 返回当前浏览器版本号
67.navigator.appCodeName 返回当前浏览器代码名字
68.navigator.userAgent 返回当前浏览器用户代标志
69.
70.onsubmit 使用函数返回值
71.opener opener.document.对象 控制原打开窗体对象
72.
73.prompt xx=window.prompt("提示信息","预定值"); 输入语句
74.parent parent.框架名.对象 控制框架页面
75.
76.return return false 返回值
77.random 随机参数(0至1之间)
78.reset() form.reset(); 使form表单内的数据重置
79.
80.split("") string.split("") 将string对象字符以逗号隔开
81.submit() form对象.submit() 使form对象提交数据
82.
83.String对象的 charAt(x)对象 反回指定对象的第多少位的字母
84.lastIndexOf("string") 从右到左询找指定字符,没有返回-1
85.indexOf("string") 从左到右询找指定字符,没有返回-1
86.LowerCase() 将对象全部转为小写
87.UpperCase() 将对象全部转为大写
88.substring(0,5) string.substring(x,x) 返回对象中从0到5的字符
89.setTimeout("function",time) 设置一个超时对象
90.setInterval("function",time) 设置一个超时对象
91.
92.toLocaleString() x.toLocaleString() 从x时间对象中获取时间,以字符串型式存在
93.typeof(变量名) 检查变量的类型,值有:String,Boolean,Object,Function,Underfined
94.
95.window.event.button==1/2/3 鼠标键左键等于1右键等于2两个键一起按为3
96.window.screen.availWidth 返回当前屏幕宽度(空白空间)
97.window.screen.availHeight 返回当前屏幕高度(空白空间)
98.window.screen.width 返回当前屏幕宽度(分辨率值)
99.window.screen.height 返回当前屏幕高度(分辨率值)
100.window.document.body.offsetHeight; 返回当前网页高度
101.window.document.body.offsetWidth; 返回当前网页宽度
102.window.resizeTo(0,0) 将窗口设置宽高
103.window.moveTo(0,0) 将窗口移到某位置
104.window.focus() 使当前窗口获得焦点
105.window.scroll(x,y) 窗口滚动条坐标,y控制上下移动,须与函数配合
106.window.open() window.open("地址","名称","属性")
107.属性:toolbar(工具栏),location(地址栏),directions,status(状态栏),
108.menubar (菜单栏),scrollbar(滚动条),resizable(改变大小), width(宽),height(高),fullscreen(全 屏),scrollbars(全屏时无滚动条无参 数,channelmode(宽屏),left(打开窗口x坐标),top(打开窗口y坐标)
109.window.location = 'view-source:' + window.location.href 应用事件查看网页源代码;
110.
111.
112.a=new Date(); //创建a为一个新的时期对象
113.y=a.getYear(); //y的值为从对象a中获取年份值 两位数年份
114.y1=a.getFullYear(); //获取全年份数 四位数年份
115.m=a.getMonth(); //获取月份值
116.d=a.getDate(); //获取日期值
117.d1=a.getDay(); //获取当前星期值
118.h=a.getHours(); //获取当前小时数
119.m1=a.getMinutes(); //获取当前分钟数
120.s=a.getSeconds(); //获取当前秒钟数
121.
122.
123.对象.style.fontSize="文字大小";
124.单位:mm/cm/in英寸/pc帕/pt点/px象素/em文字高
125.1in=1.25cm
126.1pc=12pt
127.1pt=1.2px(800*600分辩率下)
128.
129.文本字体属性:
130.fontSize大小
131.family字体
132.color颜色
133.fontStyle风格,取值为normal一般,italic斜体,oblique斜体且加粗
134.fontWeight加粗,取值为100到900不等,900最粗,light,normal,bold
135.letterSpacing间距,更改文字间距离,取值为,1pt,10px,1cm
136.textDecoration:文字修饰;取值,none不修饰,underline下划线,overline上划线
137.background:文字背景颜色,
138.backgroundImage:背景图片,取值为图片的插入路径
139.
140.
141.点击网页正文函数调用触发器:
142.
143.1.onClick 当对象被点击
144.2.onLoad 当网页打开,只能书写在body中
145.3.onUnload 当网页关闭或离开时,只能书写在body中
146.4.onmouseover 当鼠标悬于其上时
147.5.onmouseout 当鼠标离开对象时
148.6.onmouseup 当鼠标松开
149.7.onmousedown 当鼠标按下键
150.8.onFocus 当对象获取焦点时
151.9.onSelect 当对象的文本被选中时
152.10.onChange 当对象的内容被改变
153.11.onBlur 当对象失去焦点
154.onsubmit=return(ss())表单调用时返回的值
155.
156.直线 border-bottom:1x solid black
157.虚线 border-bottom:1x dotted black
158.点划线 border-bottom:2x dashed black
159.双线 border-bottom:5x double black
160.槽状 border-bottom:1x groove black
161.脊状 border-bottom:1x ridge black
|