目录
JavaScript 创建动态页面。事件
是可以被 JavaScript 侦测到的行为。 网页中的每个元素都可以产生某些可以触发 JavaScript 函数或程序的事件。
比如说,当用户单击按钮或者提交表单数据时,就发生一个鼠标单击(onclick)事件,需要浏览器做出处理,返回给用户一个结果。
onclick是鼠标单击事件,当在网页上单击鼠标时,就会发生该事件。同时onclick事件调用的程序块就会被执行,通常与按钮一起使用。
比如,我们单击按钮时,触发 onclick 事件,并调用两个数和的函数add2()。代码如下:
<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>
注意: 在网页中,如使用事件,就在该元素中设置事件属性。
鼠标经过事件,当鼠标移到一个对象上时,该对象就触发onmouseover事件,并执行onmouseover事件调用的程序。
现实鼠标经过”确定”按钮时,触发onmouseover事件,调用函数info(),弹出消息框,代码如下:
<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" onmouseover="message()">
<input name="确定" type="button" value="确定"/>
form>
body>
html>
鼠标移开事件,当鼠标移开当前对象时,执行onmouseout调用的程序。
当把鼠标移动到”登录”按钮上,然后再移开时,触发onmouseout事件,调用函数message(),代码如下:
<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.baidu.com" onmouseout="message()">点击我a>
form>
body>
html>
当网页中的对象获得聚点时,执行onfocus调用的程序就会被执行。
如下代码, 当将光标移到文本框内时,即焦点在文本框内,触发onfocus 事件,并调用函数message()。
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title> 光标聚焦事件 title>
<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>
html>
onblur事件与onfocus是相对事件,当光标离开当前获得聚焦对象的时候,触发onblur事件,同时执行被调用的程序。
如下代码, 网页中有用户和密码两个文本框。当前光标在用户文本框内时(即焦点在文本框),在光标离开该文本框后(即失焦时),触发onblur事件,并调用函数message()。
<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="请输入用户名!"onblur="message()" >
密码:<input name="password" type="text" value="请输入密码!" >
form>
body>
html>
选中事件,当文本框或者文本域中的文字被选中时,触发onselect事件,同时调用的程序就会被执行。
如下代码,当选中用户文本框内的文字时,触发onselect 事件,并调用函数message()。
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title> 内容选中事件 title>
<script type="text/javascript">
function message(){
var ssk=document.getElementById("b2")
ssk.innerHTML="你真聪明"
}
script>
head>
<body>
<form>
个人简介:<br>
<textarea id="b2" name="summary" cols="60" rows="5" onselect="message()">请写入个人简介,不少于200字!textarea>
form>
body>
html>
通过改变文本框的内容来触发onchange事件,同时执行被调用的程序。
如下代码,当用户将文本框内的文字改变后,弹出对话框“您改变了文本内容!”。
<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>
事件会在页面加载完成后,立即发生,同时执行被调用的程序。
注意:
1. 加载页面时,触发onload事件,事件写在标签内。
2. 此节的加载页面,可理解为打开一个新页面时。
如下代码,当加载一个新页面时,弹出对话框“加载中,请稍等…”。
<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>
当用户退出页面时(页面关闭、页面刷新等),触发onUnload事件,同时执行被调用的程序。
注意:不同浏览器对onunload事件支持不同。
如下代码,当退出页面时,弹出对话框“您确定离开该网页吗?”
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title> 卸载事件 title>
<script type="text/javascript">
window.onunload = onunload_message;
function onunload_message(){
alert("您确定离开该网页吗?");
}
script>
head>
<body onunload="message()">
欢迎学习JavaScript。
body>
html>
使用JS完成一个简单的计算器功能。实现2个输入框中输入整数后,点击第三个输入框能给出2个整数的加减乘除。
提示:获取元素的值设置和获取方法为:
例:赋值:document.getElementById(“id”).value = 1;
取值:var = document.getElementById(“id”).value;
<html>
<head>
<title> 事件title>
<script type="text/javascript">
function count(){
t1=document.getElementById("txt1").value;
t2=document.getElementById("txt2").value;
s1=document.getElementById("select").value;
var t3="";
switch (s1){
case "+" :
t3=parseInt(t1) + parseInt(t2);
break;
case "-" :
t3=parseInt(t1) - parseInt(t2);
break;
case "*" :
t3=parseInt(t1) * parseInt(t2);
break;
case "/" :
t3=parseInt(t1) / parseInt(t2);
break;
//设置结果输入框的值
}
document.getElementById("fruit").value=t3;
}
script>
head>
<body>
<input type='text' id='txt1' />
<select id='select'>
<option value='+'>+option>
<option value="-">-option>
<option value="*">*option>
<option value="/">/option>
select>
<input type='text' id='txt2' />
<input type='button' value=' = ' onClick="count();" />
<input type='text' id='fruit' />
body>
html>