标签:
1.鼠标单击事件(onclick)
(1)语法:onclick="message()";
(2)作用:鼠标点击网页中的按钮,就会调用相应的程序块,通常与按钮(button)一起使用
(3)例子:
<html> <head> <script type="text/javascript"> function add2(){ var numa,numb,sum; numa=6; numb=8; sum=numa+numb; document.write("两数和为:"+sum); } </script> </head> <body> <form> <input name="button" type="button" value="点击提交" onclick="add2()" /> </form> </body> </html>
2.鼠标经过事件(onmouseover)
(1)语法:onmouseover="message()";
(2)作用:鼠标经过事件,当鼠标移到一个对象上时,该对象就触发onmouseover事件,并执行onmouseover事件调用的程序。
(3)例子:
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title> 鼠标经过事件 </title> <script type="text/javascript"> function message(){ confirm("请输入密码后,再单击确定!"); } </script> </head> <body> <form> 密码:<input name="password" type="password" > <input name="确定" type="button" value="确定" onmouseover="message()"/> </form> </body> </html>
3.鼠标移开事件(onmouseout)
(1)语法:onmouseout="message()";
(2)作用:鼠标移开事件,当鼠标移开当前对象时,执行onmouseout调用的程序。
(3)例子:
<!DOCTYPE HTML> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>鼠标移开事件 </title> <script type="text/javascript"> function message(){ alert("此路是我开,此树是我栽,要想从此过,只有点进来!"); } </script> </head> <body> <form> <a href="http://www.imooc.com" onmouseout="message()">点击我</a> </form> </body> </html>
4.光标聚焦事件(onfocus)
(1)语法:onfocus="message()";
(2)作用:当网页中的对象获得聚点时,执行onfocus调用的程序就会被执行。
(3)例子:
<script type="text/javascript"> function message(){ alert("请选择,您现在的职业!"); } </script> </head> <body> 请选择您的职业:<br> <form> <select name="career" onfocus="message()"> <option>学生</option> <option>教师</option> <option>工程师</option> <option>演员</option> <option>会计</option> </select> </form> </body>
5.光标失焦事件(onblur)
(1)语法:onblur="message()";
(2)作用:onblur事件与onfocus是相对事件,当光标离开当前获得聚焦对象的时候,触发onblur事件,同时执行被调用的程序。
(3)例子:
<!DOCTYPE HTML> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title> 失焦事件 </title> <script type="text/javascript"> function message(){ alert("请确定已输入密码后,在移开!"); } </script> </head> <body> <form> 用户:<input name="username" type="text" value="请输入用户名!" > 密码:<input name="password" type="text" value="请输入密码!" onblur="message()"> </form> </body> </html>
6.内容选中事件(onselect)
(1)语法:onselect="message()";
(2)作用:选中事件,当文本框或者文本域中的文字被选中时,触发onselect事件,同时调用的程序就会被执行。
(3)例子:
<!DOCTYPE HTML> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title> 内容选中事件 </title> <script type="text/javascript"> function message(){ alert("您触发了选中事件!"); } </script> </head> <body> <form> 个人简介:<br> <textarea name="summary" cols="60" rows="5" onselect="message()">请写入个人简介,不少于200字!</textarea> </form> </body> </html>
7.文本框内容改变事件(onchange)
(1)语法:onchange="message()";
(2)作用:通过改变文本框的内容来触发onchange事件,同时执行被调用的程序。
(3)例子:
<!DOCTYPE HTML> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title> 文本框内容改变事件 </title> <script type="text/javascript"> function message(){ alert("您改变了文本内容!"); } </script> </head> <body> <form> 个人简介:<br> <textarea name="summary" cols="60" rows="5" onchange="message()">请写入个人简介,不少于200字!</textarea> </form> </body> </html>
8.加载事件(onload)
(1)语法:onload="message()";
(2)作用:事件会在页面加载完成后,立即发生,同时执行被调用的程序
(3)例子:
<!DOCTYPE HTML> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title> 加载事件 </title> <script type="text/javascript"> function message(){ alert("加载中,请稍等…"); } </script> </head> <body onload="message()"> 欢迎学习JavaScript。 </body> </html>
(4)注意:1. 加载页面时,触发onload事件,事件写在<body>标签内。2. 加载页面,可理解为打开一个新页面时。
9.卸载事件(onunload)
(1)语法:window.onunload = message;
(2)作用:当用户退出页面时(页面关闭、页面刷新等),触发onunload事件,同时执行被调用的程序。
(3)例子:
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title> 卸载事件 </title> <script type="text/javascript"> window.onunload = message; function message(){ alert("您确定离开该网页吗?"); } </script> </head> <body> 欢迎学习JavaScript。 </body> </html>
标签:
原文地址:http://www.cnblogs.com/LeeYom1993/p/4339902.html